Dear all, I use R 2.0.1 on Windows XP professional. When I want to load the 'Gregmisc' library I get the following error message: Error in library(pkg, character.only = TRUE) : 'gregmisc' is not a valid package -- installed < 2.0.0? Can anybody tell me what's wrong with this package? Cheers, Christian
It's a bundle of 4 packages (gtools, gdata, gmodels, and gplots), so you need to load one of those packages. See the following: http://cran.us.r-project.org/src/contrib/Descriptions/gregmisc.html Chuck Cleland Christian Kamenik wrote:> Dear all, > > I use R 2.0.1 on Windows XP professional. When I want to load the > 'Gregmisc' library I get the following error message: > > Error in library(pkg, character.only = TRUE) : 'gregmisc' is not a > valid package -- installed < 2.0.0? > > Can anybody tell me what's wrong with this package? > > Cheers, Christian > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide! > http://www.R-project.org/posting-guide.html >-- Chuck Cleland, Ph.D. NDRI, Inc. 71 West 23rd Street, 8th floor New York, NY 10010 tel: (212) 845-4495 (Tu, Th) tel: (732) 452-1424 (M, W, F) fax: (917) 438-0894
On Thu, 2005-03-10 at 14:44 +0100, Christian Kamenik wrote:> Dear all, > > I use R 2.0.1 on Windows XP professional. When I want to load the > 'Gregmisc' library I get the following error message: > > Error in library(pkg, character.only = TRUE) : 'gregmisc' is not a > valid package -- installed < 2.0.0? > > Can anybody tell me what's wrong with this package?gregmisc is a _bundle_, not a package. It is now comprised of four separate packages: 1. gtools 2. gdata 3. gmodels 4. gplots You will need to load the particular package that you wish to use or load all four if you wish. HTH, Marc Schwartz
Hi, Christian Kamenik wrote:> Dear all, > > I use R 2.0.1 on Windows XP professional. When I want to load the > 'Gregmisc' library I get the following error message:gregmisc is no longer a package (it used to be a package, NOT a library), it is now a "bundle of gtools, gdata, gmodels, gplots" Cheers, Kev -- Ko-Kang Kevin Wang PhD Student Centre for Mathematics and its Applications Building 27, Room 1004 Mathematical Sciences Institute (MSI) Australian National University Canberra, ACT 0200 Australia Homepage: http://wwwmaths.anu.edu.au/~wangk/ Ph (W): +61-2-6125-2431 Ph (H): +61-2-6125-7407 Ph (M): +61-40-451-8301
On Thu, 10 Mar 2005, Christian Kamenik wrote:> Dear all, > > I use R 2.0.1 on Windows XP professional. When I want to load the > 'Gregmisc' library I get the following error message: > > Error in library(pkg, character.only = TRUE) : 'gregmisc' is not a > valid package -- installed < 2.0.0? > > Can anybody tell me what's wrong with this package?gregmisc is a package bundle these days. Probably you have installed the new package bundle (including packages such as "gtools") but did not remove your old package "gregmuisc". Try, e.g., library(gtools) Uwe Ligges> Cheers, Christian > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html >