I'm trying to track down a rather critical problem. This happens both on Debian's current unstable as well a from anoncvs built this morning, reinstalling MASS. Is anyone else seeing this or am I just broken and special? 609$ /home/Rdevel/bin/R R : Copyright 2004, The R Foundation for Statistical Computing Version 1.9.0 Under development (unstable) (2004-03-04), ISBN 3-900051-00-3 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 and 'citation()' on how to cite R in publications. 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.> library(MASS)Error in loadNamespace(i[[1]], c(lib.loc, .libPaths()), keep.source) : package 'mva' does not have a name space Error in library(MASS) : package/namespace load failed>I want to know if it's just me. best, -tony -- rossini@u.washington.edu http://www.analytics.washington.edu/ Biomedical and Health Informatics University of Washington Biostatistics, SCHARP/HVTN Fred Hutchinson Cancer Research Center UW (Tu/Th/F): 206-616-7630 FAX=206-543-3461 | Voicemail is unreliable FHCRC (M/W): 206-667-7025 FAX=206-667-4812 | use Email CONFIDENTIALITY NOTICE: This e-mail message and any attachme...{{dropped}}
I had a similar problem with a build made from a fresh rsync of r-devel made on Mar 1. When I ran "make test" it reported (after running many other tests) that it could not find the libraries MASS or survival. I did not investigate further. -- Tony Plate At Thursday 10:32 AM 3/4/2004, A.J. Rossini wrote:>I'm trying to track down a rather critical problem. This happens both >on Debian's current unstable as well a from anoncvs built this >morning, reinstalling MASS. Is anyone else seeing this or am I just >broken and special? > >609$ /home/Rdevel/bin/R > >R : Copyright 2004, The R Foundation for Statistical Computing >Version 1.9.0 Under development (unstable) (2004-03-04), ISBN >3-900051-00-3 > >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 and >'citation()' on how to cite R in publications. > >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. > > > library(MASS) >Error in loadNamespace(i[[1]], c(lib.loc, .libPaths()), keep.source) : > package 'mva' does not have a name space >Error in library(MASS) : package/namespace load failed > > > > >I want to know if it's just me. > >best, >-tony > > >-- >rossini@u.washington.edu http://www.analytics.washington.edu/ >Biomedical and Health Informatics University of Washington >Biostatistics, SCHARP/HVTN Fred Hutchinson Cancer Research Center >UW (Tu/Th/F): 206-616-7630 FAX=206-543-3461 | Voicemail is unreliable >FHCRC (M/W): 206-667-7025 FAX=206-667-4812 | use Email > >CONFIDENTIALITY NOTICE: This e-mail message and any attachme...{{dropped}} > >______________________________________________ >R-devel@stat.math.ethz.ch mailing list >https://www.stat.math.ethz.ch/mailman/listinfo/r-devel
You need the version in src/contrib/1.9.0/Recommended on cran (and you do for several other recommended packages). tools/rsync-recommended should get you that version: is that how you are doing it? As a check, MASS comes from VR version 7.2-0 in R-devel. On Thu, 4 Mar 2004, A.J. Rossini wrote:> > I'm trying to track down a rather critical problem. This happens both > on Debian's current unstable as well a from anoncvs built this > morning, reinstalling MASS. Is anyone else seeing this or am I just > broken and special? > > 609$ /home/Rdevel/bin/R > > R : Copyright 2004, The R Foundation for Statistical Computing > Version 1.9.0 Under development (unstable) (2004-03-04), ISBN > 3-900051-00-3 > > 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 and > 'citation()' on how to cite R in publications. > > 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. > > > library(MASS) > Error in loadNamespace(i[[1]], c(lib.loc, .libPaths()), keep.source) : > package 'mva' does not have a name space > Error in library(MASS) : package/namespace load failed > > > > > I want to know if it's just me. > > best, > -tony > > >-- Brian D. Ripley, ripley@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
(I'm guessing the same problem) is also present in 7.1.14-2 of the debian
package r-cran-vr with r-base-core 1.8.1.cvs.20040229-2
it can be fixed with
/usr/lib/R/library/MASS:
tolstoy:/usr/lib/R/library/MASS# diff -u NAMESPACE~ NAMESPACE
--- NAMESPACE~ Wed Mar 10 12:42:26 2004
+++ NAMESPACE Wed Mar 10 12:42:38 2004
@@ -53,7 +53,7 @@
# qda.data.frame, qda.default, qda.formula, qda.matrix,
# rlm.default, rlm.formula)
-importFrom(mva, biplot)
+importFrom(stats, biplot)
S3method("[", fractions)
S3method("[<-", fractions)
On Thu, 4 Mar 2004, A.J. Rossini wrote:> I'm trying to track down a rather critical problem. This happens both
> on Debian's current unstable as well a from anoncvs built this
> morning, reinstalling MASS. Is anyone else seeing this or am I just
> broken and special?
>
> 609$ /home/Rdevel/bin/R
>
> R : Copyright 2004, The R Foundation for Statistical Computing
> Version 1.9.0 Under development (unstable) (2004-03-04), ISBN
> 3-900051-00-3
>
> 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 and
> 'citation()' on how to cite R in publications.
>
> 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.
>
> > library(MASS)
> Error in loadNamespace(i[[1]], c(lib.loc, .libPaths()), keep.source) :
> package 'mva' does not have a name space
> Error in library(MASS) : package/namespace load failed
> >
>
>
> I want to know if it's just me.
>
> best,
> -tony
>
>
> --
> rossini@u.washington.edu http://www.analytics.washington.edu/
> Biomedical and Health Informatics University of Washington
> Biostatistics, SCHARP/HVTN Fred Hutchinson Cancer Research Center
> UW (Tu/Th/F): 206-616-7630 FAX=206-543-3461 | Voicemail is unreliable
> FHCRC (M/W): 206-667-7025 FAX=206-667-4812 | use Email
>
> CONFIDENTIALITY NOTICE: This e-mail message and any attachme...{{dropped}}
>
> ______________________________________________
> R-devel@stat.math.ethz.ch mailing list
> https://www.stat.math.ethz.ch/mailman/listinfo/r-devel
>
----
Robert King, Statistics, School of Mathematical & Physical Sciences,
University of Newcastle, Australia
Room V133 ph +61 2 4921 5548
Robert.King@newcastle.edu.au http://maths.newcastle.edu.au/~rking/
We are all agreed that your theory is crazy. The question which divides us is
whether it is crazy enough to have a chance of being correct. My own feeling
is that it is not crazy enough.
-- Niels Bohr