Returning after the long weekend, I get the following: aperrin at perrin:~/afshome/papers/microcultures/R$ R R : Copyright 2003, The R Development Core Team Version 1.7.0 (2003-04-16) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type `license()' or `licence()' for distribution details. R is a collaborative project with many contributors. Type `contributors()' for more information. Type `demo()' for some demos, `help()' for on-line help, or `help.start()' for a HTML browser interface to help. Type `q()' to quit R. Error in get(x, envir, mode, inherits) : variable "biplot" was not found Fatal error: unable to restore saved data in .RData Any advice? The partition is mounted read/write. This is R 1.7.0 under debian linux (kernel 2.4.20). Thanks! ---------------------------------------------------------------------- Andrew J Perrin - http://www.unc.edu/~aperrin Assistant Professor of Sociology, U of North Carolina, Chapel Hill clists at perrin.socsci.unc.edu * andrew_perrin (at) unc.edu
try R --vanilla The likely story is that you have library(MASS) in the .Rprofile being found. That does not work in 1.7.0 (and is not the recommended way to do this: see the help archives for solutions, one of which is to run update.packages() and get the current VR bundle). On Tue, 27 May 2003, Andrew Perrin wrote:> Returning after the long weekend, I get the following: > > aperrin at perrin:~/afshome/papers/microcultures/R$ R > > R : Copyright 2003, The R Development Core Team > Version 1.7.0 (2003-04-16) > > R is free software and comes with ABSOLUTELY NO WARRANTY. > You are welcome to redistribute it under certain conditions. > Type `license()' or `licence()' for distribution details. > > R is a collaborative project with many contributors. > Type `contributors()' for more information. > > Type `demo()' for some demos, `help()' for on-line help, or > `help.start()' for a HTML browser interface to help. > Type `q()' to quit R. > > Error in get(x, envir, mode, inherits) : variable "biplot" was not found > Fatal error: unable to restore saved data in .RData > > > > Any advice? The partition is mounted read/write. This is R 1.7.0 under > debian linux (kernel 2.4.20). > > Thanks! > > ---------------------------------------------------------------------- > Andrew J Perrin - http://www.unc.edu/~aperrin > Assistant Professor of Sociology, U of North Carolina, Chapel Hill > clists at perrin.socsci.unc.edu * andrew_perrin (at) unc.edu > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://www.stat.math.ethz.ch/mailman/listinfo/r-help >-- Brian D. Ripley, ripley at stats.ox.ac.uk Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (self) 1 South Parks Road, +44 1865 272866 (PA) Oxford OX1 3TG, UK Fax: +44 1865 272595
On Tue, 2003-05-27 at 08:49, Andrew Perrin wrote:> Returning after the long weekend, I get the following: > > aperrin at perrin:~/afshome/papers/microcultures/R$ R > > R : Copyright 2003, The R Development Core Team > Version 1.7.0 (2003-04-16) > > R is free software and comes with ABSOLUTELY NO WARRANTY. > You are welcome to redistribute it under certain conditions. > Type `license()' or `licence()' for distribution details. > > R is a collaborative project with many contributors. > Type `contributors()' for more information. > > Type `demo()' for some demos, `help()' for on-line help, or > `help.start()' for a HTML browser interface to help. > Type `q()' to quit R. > > Error in get(x, envir, mode, inherits) : variable "biplot" was not found > Fatal error: unable to restore saved data in .RData > > > > Any advice? The partition is mounted read/write. This is R 1.7.0 under > debian linux (kernel 2.4.20). > > Thanks!Andrew, Do you by chance have library(MASS) in your .Rprofile? If so, change it to: options(defaultPackages=c(getOption("defaultPackages"), "MASS")) Include any other packages that you are loading in the c(...) arguments after MASS. That will resolve the issue. Regards, Marc Schwartz