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"