Read the Value section of ?mclapply. That error is an encapsulated error from
the forecast function.
I suggest not debugging your code running in parallel... temporarily replace
mclapply with lapply to debug so you can step into your worker fictions. You
may also want to temporarily reduce the
> args(parallel::mclapply)
function (X, FUN, ..., mc.preschedule = TRUE, mc.set.seed = TRUE,
mc.silent = FALSE, mc.cores = 1L, mc.cleanup = TRUE, mc.allow.recursive
= TRUE)
You gave it 'fun=forecast' instead of 'FUN=forecast'. Case matters in R.
Bill Dunlap
TIBCO Software
wdunlap tibco.com
2 matches
Mail list logo