Displaying 1 result from an estimated 1 matches for "plotscreate".
2012 May 15
1
Simple parallel for loop
...uld like to split over 16 available cores. The code is in the following format
inputForFunction<-expand.grid(caseList,filterList)
for (i in c(1:length(inputForFunction$Var1))){#
FileList<-GetFileList(flag=as.vector(inputForFunction$Var1[i]));
print(sprintf("Calling the plotsCreate for %s and%s",as.vector(inputForFunction$Var1[i]),as.vector(inputForFunction$Var2[i])))
plotsCreate(Folder=mainFolder,case=as.vector(inputForFunction$Var1[i]),DataList=FileList,DataFilter=as.vector(inputForFunction$Var2[i]))
}
as you can see after the inputForFunction is calculated th...