I am getting the above error with clusterR and aggregate: works fine without parralell:
library(raster) r<-raster(matrix(data = sample(c(1:10,NA),10000,replace=T),100,100),xmn=0, xmx=1000,ymn=0,ymx=1000) beginCluster() Parr_agg<-clusterR(r,fun=aggregate,args=list(fact=3,fun=modal,expand=TRUE,na.rm=TRUE)) endCluster() agg<-aggregate(r,3,fun=modal,na.rm=TRUE) plot(agg) [[alternative HTML version deleted]] ______________________________________________ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.