Tôi có 2 kịch bản làm giống hệt nhau.
Nhưng một tập lệnh đang tạo ra 3 tệp RData có trọng lượng 82,7 KB và tập lệnh khác tạo 3 tệp RData có trọng lượng 120 KB.
cái đầu tiên không có song song:
library("plyr")
ddply(.data = iris,
.variables = "Species",
##.parallel=TRUE,##Without parallel
.fun = function(SpeciesData){
#Create Simple Model -------------------------------------------------------------
Model <- lm(formula = "Sepal.Length~Sepal.Width+Petal.Length+Petal.Width",data = SpeciesData)
#Save The Model -------------------------------------------------------------
save(Model,
compress = FALSE,
file = gsub(x = "Species.RData",
pattern = "Species",
replacement = unique(SpeciesData$Species)))
})
Thứ hai là song song:
library("plyr")
doSNOW::registerDoSNOW(cl<-snow::makeCluster(3))
ddply(.data = iris,
.variables = "Species",
.parallel=TRUE,##With parallel
.fun = function(SpeciesData){
#Create Simple Model -------------------------------------------------------------
Model <- lm(formula = "Sepal.Length~Sepal.Width+Petal.Length+Petal.Width",data = SpeciesData)
#Save The Model -------------------------------------------------------------
save(Model,
compress = FALSE,
file = gsub(x = "Species.RData",
pattern = "Species",
replacement = unique(SpeciesData$Species)))
})
snow::stopCluster(cl)
tập lệnh thứ hai tạo ra các tập tin nặng hơn 42%.
Làm cách nào để lưu tệp song song mà không tự động tăng kích thước tệp?
r lang lock file
và sau 5 giây, bạn sẽ tìm thấy gói cran.r-project.org/web/packages/filelock/filelock.pdf