有没有一种方法可以从R函数创建两行字符串?

时间:2020-07-30 23:04:01

标签: r

所以我想创建一列数据,其格式将完全像这样:

Hello, my name is: 
BLuta

从宏大的计划中,我希望桌子看起来像这样……

enter image description here

但是,如果我要运行代码...

df$labels <- paste("Hello, my name is:", "BLuta", sep = " ")

它将创建类似这样的内容,这正是我所不希望的:

Hello, my name is: BLuta

有可能做到这一点吗?真的很感谢您的协助。

1 个答案:

答案 0 :(得分:0)

我们可以使用cat

cat("hello, my name is:\nBLuta", "\n")