[R] .First.lib

2006-11-18 Thread Charles Annis, P.E.
Greetings: I’m running R version 2.4.0 (2006-10-03) on WindowsXP in a 3 year old DELL box with 2 gig. I have successfully created a zipped package, mh1823_2.1.zip, using R CMD build --binary mh1823. R CMD build --binary automatically adds a file, mh1823, containing .First.lib and its default

Re: [R] .First.lib

2006-11-18 Thread Prof Brian Ripley
On Sat, 18 Nov 2006, Charles Annis, P.E. wrote: Greetings: I’m running R version 2.4.0 (2006-10-03) on WindowsXP in a 3 year old DELL box with 2 gig. I have successfully created a zipped package, mh1823_2.1.zip, using R CMD build --binary mh1823. R CMD build --binary automatically adds a

Re: [R] .First.lib

2006-11-18 Thread Charles Annis, P.E.
PROTECTED] Sent: Saturday, November 18, 2006 12:53 PM To: Charles Annis, P.E. Cc: r-help@stat.math.ethz.ch Subject: Re: [R] .First.lib On Sat, 18 Nov 2006, Charles Annis, P.E. wrote: Greetings: I'm running R version 2.4.0 (2006-10-03) on WindowsXP in a 3 year old DELL box with 2 gig. I have

Re: [R] .First.lib

2006-11-18 Thread Charles Annis, P.E.
, P.E. Sent: Saturday, November 18, 2006 1:54 PM To: 'Prof Brian Ripley' Cc: r-help@stat.math.ethz.ch Subject: Re: [R] .First.lib Thank you Professor Ripley. I don't have compiled code and do not have a namespace, which is required (I understand) to use onLoad. The package is of moderate size

[R] .First.lib failed

2004-03-18 Thread Frank E Harrell Jr
Using R-devel of 2Mar04 on debian linux I am getting an error when running /usr/local/src/R-devel/bin/R CMD check --no-clean Hmisc: * checking S3 generic/method consistency ... WARNING Error in .tryQuietly({ : Error in library(package, lib.loc = lib.loc, character. only = TRUE, verbose = FALSE)

[R] .First.lib doesn't appear to be running after calling library()

2003-10-07 Thread Crispin Miller
Hi - so I've dusted off the C bits of my brain and gotten a library written for my package... It passes R CMD check ok, and I've put a file called '.First.lib.R' in the pacakge's 'R' subdirectory. Its permissions are 644. It says: .First.lib - function(lib,pkg) {

RE: [R] .First.lib doesn't appear to be running after calling lib rary()

2003-10-07 Thread Liaw, Andy
From the R-exts manual: The R subdirectory contains R code files. The code files to be installed must start with a (lower or upper case) letter and have one of the extensions .R, .S, .q, .r, or .s. We recommend using .R, as this extension seems to be not used by any other software. It should

Re: [R] .First.lib doesn't appear to be running after calling library()

2003-10-07 Thread Prof Brian Ripley
On Tue, 7 Oct 2003, Crispin Miller wrote: Hi - so I've dusted off the C bits of my brain and gotten a library written for my package... It passes R CMD check ok, and I've put a file called '.First.lib.R' in the pacakge's 'R' subdirectory. Its permissions are 644. It says:

RE: [R] .First.lib doesn't appear to be running after calling lib rary()

2003-10-07 Thread Crispin Miller
Thanks - it is indeed the first '.' that's the problem... Crispin -Original Message- From: Liaw, Andy [mailto:[EMAIL PROTECTED] Sent: 07 October 2003 15:21 To: Crispin Miller Subject: RE: [R] .First.lib doesn't appear to be running after calling lib rary() I put .First.lib