search for: rsqrs

Displaying 3 results from an estimated 3 matches for "rsqrs".

Did you mean: rsqrt
2003 Oct 07
1
.First.lib doesn't appear to be running after calling library()
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) { library.dynam("foo",pkg,lib); require(affy,quietly=TRUE); } I build and INSTALL
2001 Jun 03
1
Difficulty with R CMD INSTALL
I am running Linux Mandrake 7.2 with the following: platform i586-pc-linux-gnu arch i586 os linux-gnu system i586, linux-gnu status major 1 minor 2.3 year 2001 month 04 day 26 language R To build a package I ran R CMD build Hmisc, apparently with success: * checking for file `Hmisc/DESCRIPTION' ... OK * preparing `Hmisc': * cleaning src * checking
1998 Dec 03
1
Makefiles in contributed packages
Hello, I have a couple of suggestions that will help persons with machines/OSs that use extensions other than ".so" for shared libs: 1) Use the variable SHLIBEXT (defined in Makeconf), DONT use "so" or "sl". 2) Use the method in "modreg" to load the dynamic lib: .First.lib <- function(lib, pkg) library.dynam("modreg", pkg, lib) DO NOT USE