读取 R 中的许多变量
我正在尝试使用 c()
连接 R 中的许多向量。我已声明每个文件都以“_n”结尾(即filename_n
)。现在我想知道是否有一种比仅输入每个变量更简单的方法来读取它们。我知道在 Bash 中我可以使用 ls *.file_extension > filename 读取所有文件。R 中是否有类似的方法。
谢谢。
I am trying to concatenate many vectors in R using c()
. I have declared each of them to end with "_n" (i.e. filename_n
). Now I want to know whether there is an easier method to read them all than just entering in each variable. I know in Bash I can use ls *.file_extension > filename
to read all files in. Is there a similar method in R.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我了解,您可能会受益于阅读
?list.files
、?read.table
、?do.call
、?sapply
。作为示例,(未经测试)
编辑:看起来您现在正在执行
?ls
和?get
,或者更简洁地说,
From what I understand you might benefit from reading
?list.files
,?read.table
,?do.call
,?sapply
. As a means of example,(untested)
EDIT: it looks like you're after
?ls
and?get
now,or, more succinctly,