Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将数字向量转换为字符串,例如,
c(1,0,3,4,5)
进入
"10345"
有任何想法吗?
您可以使用 functionpaste()和 argument来做到这一点collapse=""。
paste()
collapse=""
x<-c(1,0,3,4,5) paste(x,collapse="") [1] "10345"
do.call(paste0,as.list(x))
这种方法的好处是它可以与任何其他函数一起使用,而不仅仅是 paste()。