Here's another issue (that might well be operator error):> install.packages("lattice")... ... ** save image Loading required package: grid Error in importIntoEnv(impenv, impnames, ns, impvars) : object(s) 'dev.list', 'cm.colors', 'gray', 'heat.colors' are not exported by 'namespace:graphics' Execution halted ERROR: execution of package source for 'lattice' failed ** Removing '/usr/home/jgentry/R-devel/library/lattice' Thanks -J
?????? 23 ????? 2004 13:57 ??????, Jeff Gentry ?????????:> Here's another issue (that might well be operator error): > > install.packages("lattice") > > ... > ... > ** save image > Loading required package: grid > Error in importIntoEnv(impenv, impnames, ns, impvars) : > object(s) 'dev.list', 'cm.colors', 'gray', 'heat.colors' are not > exported by 'namespace:graphics' > Execution halted > ERROR: execution of package source for 'lattice' failed > ** Removing '/usr/home/jgentry/R-devel/library/lattice'Yes, the released lattice version is no longer compatible with r-devel after a split of the graphics package, and install.packages doesn't know to look in http://cran.us.r-project.org/src/contrib/2.0.0/Recommended/. Doing a ./tools/rsync-recommended should get you the correct version. Deepayan
On Mon, 23 Aug 2004, Jeff Gentry wrote:> > Here's another issue (that might well be operator error): > > > install.packages("lattice") > > ... > ... > ** save image > Loading required package: grid > Error in importIntoEnv(impenv, impnames, ns, impvars) : > object(s) 'dev.list', 'cm.colors', 'gray', 'heat.colors' are not > exported by 'namespace:graphics'The graphics package has been split into grDevices and graphics. You need to remove any previously built versions of graphics and grid in library/ before rebuilding. -thomas