[Rd] installed.packages() with no packages

Peter Dalgaard BSA p.dalgaard at biostat.ku.dk
Tue Apr 29 01:47:27 MEST 2003


Jeff Gentry <jgentry at jimmy.harvard.edu> writes:

> Hello ...
> 
> I found this due to a situation where installed.packages() was given a
> lib.loc argument that turned out to not have any R packages installed.  As
> an example:
> > z <- tempfile()
> > dir.create(z)
> > installed.packages(z)
> Error in "colnames<-"(*tmp*, value = c("Package", "LibPath", pkgFlds)) : 
> 	dimnames applied to non-array
> 
> Looking at the code, it seems what happens is that 'retval' is assigned
> character() but then after the for loop the function checks 'retval' with
> a "if(!is.null(retval))", and I don't see how 'retval' could ever have a
> NULL value in this situation.  Would this be better to check against
> "nrow(retval)"?

Or change the initialization to retval <- NULL as would seem to have
been intended? Seems to work OK.

-- 
   O__  ---- Peter Dalgaard             Blegdamsvej 3  
  c/ /'_ --- Dept. of Biostatistics     2200 Cph. N   
 (*) \(*) -- University of Copenhagen   Denmark      Ph: (+45) 35327918
~~~~~~~~~~ - (p.dalgaard at biostat.ku.dk)             FAX: (+45) 35327907



More information about the R-devel mailing list