Displaying 2 results from an estimated 2 matches for "pifl".
Did you mean:
pidl
2017 Dec 07
2
parallel computing with foreach()
...in the
analysis, I will try to give below the complete code without reproducible
example.
In short, each R environment will draw a set of separate files, perform the
analysis and dump in separate folders.
splist <- c("juoc", "juos", "jusc", "pico", "pifl", "pipo", "pire", "psme")
covset <- c("PEN", "Thorn")
foreach(i = 1:length(splist)) %:%
foreach(j = 1:length(covset)) %dopar% {
spname <- splist[i]; spname
myTorP <- covset[j]; myTorP
DataSpecies = data.frame(prsabs = rep(1, 10), lo...
2017 Dec 07
0
parallel computing with foreach()
...to give below the complete code without reproducible
> example.
>
> In short, each R environment will draw a set of separate files, perform the
> analysis and dump in separate folders.
>
> splist <- c("juoc", "juos", "jusc", "pico", "pifl", "pipo", "pire", "psme")
> covset <- c("PEN", "Thorn")
>
> foreach(i = 1:length(splist)) %:%
> foreach(j = 1:length(covset)) %dopar% {
>
> spname <- splist[i]; spname
> myTorP <- covset[j]; myTorP
>
> DataSp...