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で次のコマンドを実行しています:
system("ls ")
上記のコマンドの出力をいくつかのR変数に格納する必要があります。同じことをする方法はありますか?
使用intern=TRUE:
intern=TRUE
a <- system("ls ", intern = TRUE)
対応するR関数を使用してみませんか?
a <- list.files() b <- list.files(recursive = TRUE)
詳細については
?list.files