标签: r
我想将存储为list的值转换为单个字符串。
list
例如:
l <- list(1,2,3,4)
会给:
"1234"
而不是使用unlist()的输出:
unlist()
unlist(l) #[1] "1" "2" "3" "4"
答案 0 :(得分:15)
paste( unlist(l), collapse='')