如何将数据框的两列粘贴在一起,以便 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)