gpt4 book ai didi

r - 如何在 R 中的单个字符串中打印向量的所有元素?

转载 作者:行者123 更新时间:2023-12-04 06:36:19 25 4
gpt4 key购买 nike

有时我想在单个字符串中打印向量中的所有元素,但它仍然单独打印元素:

notes <- c("do","re","mi")
print(paste("The first three notes are: ", notes,sep="\t"))

这使:
[1] "The first three notes are: \tdo" "The first three notes are: \tre"
[3] "The first three notes are: \tmi"

我真正想要的是:
The first three notes are:      do      re      mi

最佳答案

最简单的方法可能是使用一个 c 组合您的消息和数据。功能:

paste(c("The first three notes are: ", notes), collapse=" ")
### [1] "The first three notes are: do re mi"

关于r - 如何在 R 中的单个字符串中打印向量的所有元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28866584/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com