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.
我现在正在使用编程语言 R。我有一个向量:
a <- c("aa", "bb", "cc")
我想将这些粘贴到系统命令中,我现在正在尝试这种方式:
args <- paste(a, sep=" ") system(paste("command",args, sep=" "))
但现在我只得到参数 aa,我想要参数 aa、bb 和 cc ......
有人知道我在做什么错吗?
使用collapse参数paste:
collapse
paste
paste(a,collapse=" ") [1] "aa bb cc"