search for: jeg002

Displaying 5 results from an estimated 5 matches for "jeg002".

2004 Jan 14
0
Update on: Installing the Rcmdr and tclk package
...ot;config.site", as in the "R Installation and Admin" and specifying the options: "with-tcl-config=/path to the tclConfig.sh file" and "with-tk-config=/path to the tkConfig.sh file" for configure. configure still gave me the following warning: checking for /home/jeg002/tcl8.4.5/lib... /home/jeg002/tcl8.4.5/lib checking for /home/jeg002/tcl8.4.5/lib... /home/jeg002/tcl8.4.5/lib ./configure: .: /home/jeg002/tcl8.4.5/lib: is a directory ./configure: test: -lt: unary operator expected ./configure: .: /home/jeg002/tcl8.4.5/lib: is a directory ./configure: test: -lt: u...
2004 Jan 20
3
Changing workspace from within an R session
...d by the result. The objects already in the workspace, as called in R, stayed there and the objects from the workspace I wanted to attach were added to the current workspace and the workspace I was hoping to attach at pos 1 was attach at pos 2 with seemingly nothing in it? > attach("/home/jeg002/splus/GlmExamples/.RData", pos = 1) > search() [1] ".GlobalEnv" [2] "file:/home/jeg002/splus/GlmExamples/.RData" [3] "package:methods" ... > objects(pos = 2) character(0) The little function, mentioned above, and used in Splus. "chdir"...
2010 Feb 05
2
Importing data coming from Splus into R.
...ot; package has a function to directly import Splus data sets into R, but I also know that it is working only for 32-bit versions of the softwares, hence I didn't try that route. Here is what I have done: In Splus: ttt <- exportData(data = FMD.CR.test, file = "/home/jeg002/splus/R/Exemples/R/FMD-CR-test.csv", type = "ASCII", delimiter = "@", quote = T, na.string = "NA") ttt.class <- unlist(lapply(FMD.CR.test, class)) ### I am using "@" as delimiter since some factor levels contain both the ",&quo...
2004 Jan 28
1
Large data sets and memory management in R.
...ot;--max-memory-size" option? I am wondering if someone having experience working with large data sets would share the configurations and options he is using. If that matters here is the model I was trying to fit. library(package = "statmod", pos = 2, lib.loc = "/home/jeg002/R-1.8.1/lib/R/R_LIBS") qc.B3.tweedie <- glm(formula = pp20B3 ~ ageveh + anpol + categveh + champion + cie + dossiera + faq13c + faq5a + kmaff + kmprom + nbvt + rabprof + sexeprin + newage, family = tweedie(...
2004 Jan 21
0
Summary: Changing workspace from within an R session
...iginal post. For those interested here is the little function, works like a charm. Note that "options()$Current.Dir" gets setup at startup, note also that the name of all my temp. objects start by "ttt". "chdir" <- function(datadir, default.path = '/actuaria/jeg002/') { # Author : G?rald Jean, based on ideas from different people on the R-users mailing # list. # Date : January 21, 2004 # Purpose : will delete all objects starting with "ttt*" from directory # currently at position 1 in the search path, will save the #...