参考手册
参考手册
实例 R 语言 组合文本和变量
源代码
运行代码
text <- "awesome" paste("R is", text)
x
text
<-
"awesome"
paste
(
"R is"
,
text
)
输出结果
[1] "R is awesome"