Re: [R] Ignoring loadNamespace errors when loading a file

2011-08-22 Thread Allan Engelhardt
On 22/08/11 12:26, Martin Morgan wrote: On 08/21/2011 11:52 PM, Allan Engelhardt wrote: [...] Obligatory reproducible example: On the Unix machine do library("multicore") a <- list(data = 1:10, fun = mclapply) save(a, file = "a.RData") and then try to load the "a.RData" file on Windows. The

Re: [R] Ignoring loadNamespace errors when loading a file

2011-08-22 Thread Martin Morgan
On 08/21/2011 11:52 PM, Allan Engelhardt wrote: On a Unix machine I ran caret::rfe using the multicore package, and I saved the resulting object using save(lm2, file = "lm2.RData"). [Reproducible example below.] When I try to load("lm2.RData") on my Windows laptop, I get Error in loadNamespace(

Re: [R] Ignoring loadNamespace errors when loading a file

2011-08-22 Thread Uwe Ligges
On 22.08.2011 08:52, Allan Engelhardt wrote: On a Unix machine I ran caret::rfe using the multicore package, and I saved the resulting object using save(lm2, file = "lm2.RData"). [Reproducible example below.] When I try to load("lm2.RData") on my Windows laptop, I get Error in loadNamespace(n

[R] Ignoring loadNamespace errors when loading a file

2011-08-21 Thread Allan Engelhardt
On a Unix machine I ran caret::rfe using the multicore package, and I saved the resulting object using save(lm2, file = "lm2.RData"). [Reproducible example below.] When I try to load("lm2.RData") on my Windows laptop, I get Error in loadNamespace(name) : there is no package called 'multicore'