让我们假设我们遇到这种情况:
所以我想知道是否有可能只将这些我感兴趣的数据集加载到内存中,而不是加载整个.RData文件?
我想在循环中加载每个'Dataset_of_interest',合并成一个大文件然后将其保存在一个文件中。
编辑:我在Windows 7上工作。
答案 0 :(得分:3)
我认为这是可能的,但需要一些并行处理功能。每个worker都会加载.RData文件并输出所需的对象。合并结果可能非常简单。
我无法为您的数据提供代码,因为我不知道结构,但我会按照以下块的代码执行某些操作。请注意,我在Windows上,您的工作流程可能会有所不同。你不应该缺乏计算机内存。此外,降雪并不是使用多核的唯一接口。
# load library snowfall and set up working directory
# to where the RData files are
library(snowfall)
working.dir <- "/path/to/dir/with/files"
setwd(working.dir)
# initiate (redneck jargon: and then she ate) workers and export
# working directory. Working directory could be hard coded into
# the function, rendering this step moot
sfInit(parallel = TRUE, cpus = 4, type = "SOCK")
sfExport(list = c("working.dir")) # you need to export all variables but x
# read filenames and step through each, returning only the
# desired object
lofs <- list.files(pattern = ".RData")
inres <- sfSapply(x = lofs, fun = function(x, wd = working.dir) {
setwd(wd)
load(x)
return(Dataset_of_interest)
}, simplify = FALSE)
sfStop()
# you could post-process the data by rbinding, cbinding, cing...
result <- do.call("rbind", inres)