我可以编写一个R脚本来打开并运行文件夹中的每个R文件吗?
我知道如何检查文件夹中是否存在文件,如何将文件夹中的每个文件作为文本连接读取,以及如何读取文件夹中的每个数据文件。
但是,我想一次一个地执行一个文件夹中的每个R脚本,理想情况下使用单个R脚本并在安装过程中在Windows桌面上安装默认的R gui。
我怀疑我可能需要从命令行运行R而是编写某种批处理文件来执行此操作。我很少从命令行运行R,也从未为R编写批处理文件。
以下是一些示例R脚本,它们都存储在名为run_all_these
的文件夹中:
文件run.one.r
包含:
a <- 10
b <- 20
c <- a+b
c
文件run.two.r
包含:
a <- 10
b <- 20
c <- a-b
c
文件run.three.r
包含:
a <- 10
b <- 20
c <- a*b
c
文件run.four.r
包含:
a <- 10
b <- 20
c <- a/b
c
我发现使用Google几乎没有关于此主题的内容。虽然,我确实在这里找到了一些批处理文件:
http://cran.r-project.org/bin/windows/base/rw-FAQ.html
我的实际R脚本将在运行时各自创建自己的输出文件。所以,我现在主要关心的是运行R脚本。虽然下一步是打开每个R脚本,但将a
从10
更改为100
并再次运行它们。也许这应该是一个后续职位。
感谢您提出任何建议。
编辑 2013年11月20日:
在与Ricardo Saporta讨论之后,我将四个输入文件更改为:
档案run.one.r
:
a <- 10
b <- 20
c <- a+b
print(c)
档案run.two.r
:
a <- 10
b <- 20
c <- a-b
print(c)
档案run.three.r
:
a <- 10
b <- 20
c <- a*b
print(c)
档案run.four.r
:
a <- 10
b <- 20
c <- a/b
print(c)
答案 0 :(得分:7)
我的utils文件中有以下功能:
## finds all .R files within a folder and soruces them
sourceEntireFolder <- function(folderName, verbose=FALSE, showWarnings=TRUE) {
files <- list.files(folderName, full.names=TRUE)
# Grab only R files
files <- files[ grepl("\\.[rR]$", files) ]
if (!length(files) && showWarnings)
warning("No R files in ", folderName)
for (f in files) {
if (verbose)
cat("sourcing: ", f, "\n")
## TODO: add caught whether error or not and return that
try(source(f, local=FALSE, echo=FALSE), silent=!verbose)
}
return(invisible(NULL))
}
答案 1 :(得分:2)
sapply( list.files(run_all_these, full.names=TRUE), source )
您需要确保run_all_these
是有效的Windows目录规范。
答案 2 :(得分:0)
如果您没有子文件夹:
library(tidyverse)
list.files("name_folder", full.names = TRUE) %>% walk(source)