0

如何将数据框的两列粘贴在一起,以便 MS Excel 在粘贴到 Excel 时在它们之间插入换行符。

粘贴到 MS Excel 中时,以下代码的结果应类似于此图。请注意,最后一列在 "Qn1" 和 "Quebec" 之间有一个换行符:

在此处输入图像描述

dfExample <- head( CO2 )  ## CO2 is in base datasets

dfExample$Vektor.With.Linebreak <- paste(   df$Plant, df$Type, sep = "(  linebreak here  )" )


write.table( x = dfExample, file = "clipboard", sep = "\t", row.names = FALSE)
4

1 回答 1

1

Windows 的换行符序列是\r\n,所以使用:

dfExample$Vektor.With.Linebreak <- paste(dfExample$Plant, dfExample$Type, sep = "\r\n")
于 2013-10-24T08:00:58.467 回答