search for: tom_hoari

Displaying 4 results from an estimated 4 matches for "tom_hoari".

Did you mean: tom_hoary
2005 Jan 11
1
Ess packages for Suse-9.2 available ?
Hi, I've just managed to install R on Suse-9.2. Unfortunately there seem to be no Ess packages in Suse distri available. Doesn't seem like that Suse is ever to integrate these packages (since 2000)!? Are there any precompiled binaries around? So far I haven't been lucky to find any of them on rpmfind and similar sites. Maybe someone has already Ess binary for Suse-9.2 and is willing
2005 Jan 04
2
warnings and errors with R CMD INSTALL
Hello, unfortunately I had to compile latest version of R-2.0.1 by myself. I'd rather would prefer vendors binaries but since the current version of Ubuntu defaults to 1.9.x I had to compile R on my own in order to be up to date! So far, everything went fine and R runs smoothly. Unfortunately I am not able to use R CMD INSTALL command to install add-on packages. I followed RNews 3/3 and
2005 Mar 13
0
any book and tutorial about how to manipulate data with R /S+
> From: Wensui Liu > > I am sorry that I did not state my question clearly. > > What I mean by data manipulation includes sort, merge, aggregate, > transpose, R has functions for doing those: sort(), merge(), aggregate(), and t(), respectively. > data export and import, format, date & time handle, and so > on, As others have pointed out, R comes with a manual on
2005 Apr 21
2
Howto overlay two plots and save them in one pdf file?
Hello, I do have two different plots from LAD and OLS regression objects like this: # LAD regression and related plot rq(formula = SBP ~ Age) f = coef(rq(SBP ~ Age)) pred = f[1] + f[2]*Age plot (Age, SBP) lines (Age, pred) # OLS regression and related plot Pred = lm(SBP ~ Age) plot (Age, SBP) lines (Age,fitted(Pred)) Well for comparatative reason I would would like to subsume both plots