Re: [R] inconsistency in list subsetting in R in linux

2018-06-29 Thread Jeff Newmiller
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

Re: [R] inconsistency in list subsetting in R in linux

2018-06-29 Thread William Dunlap via R-help
> 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