This question does not appear to be about programming within the scope defined in the help center.
Closed 2 years ago.
有多种方法。我们可以使用 base R 中的 sprintf
base R
sprintf
sprintf("Sammy is a %s, %s and %s %s!", "happy", "smiling", "blue", "shark") [1] "Sammy is a happy, smiling and blue shark!"
或者可以使用 paste/glue 考虑到这些是在全局环境中创建的对象
paste/glue
There are multiple ways. We may use sprintf from base R
Or may use paste/glue considering these are objects created in the global env
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
有多种方法。我们可以使用
base R
中的sprintf
或者可以使用
paste/glue
考虑到这些是在全局环境中创建的对象There are multiple ways. We may use
sprintf
frombase R
Or may use
paste/glue
considering these are objects created in the global env