实例 R 语言 将一个变量添加另一个变量

x
 
text1 <- "R is"
text2 <- "awesome"
paste(text1, text2)
                    

输出结果

[1] "R is awesome"