Re: [R] panel function in a conditioned lattice graphic

2004-05-30 Thread Deepayan Sarkar
On Saturday 29 May 2004 20:18, Anthony Darrouzet-Nardi wrote: I have a followup question. Suppose I want to encode two different variables within a panel: one variable encoded by plotting character and one variable encoded by symbol color (as if I could use two groups variables). The

Re: [R] What's wrong with this simple code???

2004-05-30 Thread Uwe Ligges
Yong Wang wrote: Hi, all I can not figure this out, please have a look and help me out. thank you! Note: this is in SPLUS, not R. Note 1: This mailing list is about R, not S-PLUS. Note 2: Your code is not reproducible - we don't have the data. I'd suggest that you repost your question including

Re: [R] how to remove . or replace it with NA?

2004-05-30 Thread Spencer Graves
It's apparently a unix command; www.r-project.org - search - R site search - sed produced at least one hit with the following example: scan(pipe(sed -e s/,$// data2), sep=,) For the rest of this comment, see the R site search. hope this helps. spencer graves Yong Wang wrote:

[R] prcomp help

2004-05-30 Thread Al Piszcz
Slackware 9.1, R 1.9.0, 2.54GHZ P4, 2GB RAM example(prcomp) never finishes example(prcomp) prcomp data(USArrests) prcomp prcomp(USArrests) The following test also appears to hang. a-matrix(rnorm(100,mean=32,sd=31),10,10) b-prcomp(a) What is the recommended debug approach? Thank you.

[R] summary.lm

2004-05-30 Thread Marc R. Feldesman
I ran across this error the other day while using lm(). I confess that I haven't used it for awhile and haven't been tracking the changes between versions of R. However, the piece of code below is a tiny modification of the example in the help file for lm. I just separated the commands apart

Re: [R] summary.lm

2004-05-30 Thread Roger D. Peng
Is it possible you have a locally modified version of summary.lm() lying around. Here are the first few lines of summary.lm() in R 1.9.0: head(summary.lm) 1 function (object, correlation = FALSE, symbolic.cor = FALSE, 2 ...) 3 { 4 z - object 5 p - z$rank 6 if (p == 0) { So

Re: [R] prcomp help

2004-05-30 Thread Uwe Ligges
Al Piszcz wrote: Slackware 9.1, R 1.9.0, 2.54GHZ P4, 2GB RAM example(prcomp) never finishes example(prcomp) prcomp data(USArrests) prcomp prcomp(USArrests) The following test also appears to hang. a-matrix(rnorm(100,mean=32,sd=31),10,10) b-prcomp(a) Works on Windows and several other OSs.

Re: [R] prcomp help

2004-05-30 Thread Al Piszcz
I am pretty sure it is something to do with my local installation. I have R running on 6 other systems with no proble.s 1] R --vanilla (same bevhavior, does not finish) 2] I will reinstall and report back shortly if there is still an issue. Thank you. On Sun, 30 May 2004, Uwe Ligges wrote:

[R] zipping a new package

2004-05-30 Thread Laura Holt
Dear R People: I have finally created a little R package. Do I need to do anything special to create a zip file for that package, or just use Winzip, please? thanks so much R Windows Version 1.9.0 Thanks, Laura mailto: [EMAIL PROTECTED] __ [EMAIL

Re: [R] prcomp help

2004-05-30 Thread Al Piszcz
There may be some compilation issues with XFree86 4.4.0 gcc -Wl,--export-dynamic -L/usr/local/lib -o R.bin CConverters.o Rdynload.o RN G.o apply.o arithmetic.o apse.o array.o attrib.o base.o bind.o builtin.o charac ter.o coerce.o colors.o complex.o connections.o context.o cov.o cum.o dcf.o dat

RE: [R] how to remove . or replace it with NA?

2004-05-30 Thread John Fox
Dear Spenser et al., sed stands for string editor, I believe, and it is a Unix utility, although there are implementations for other OS's including Windows. For Yong Wang's problem, I think that it is more natural to use the na.strings argument to read.table(), as I previously suggested, than to

RE: [R] zipping a new package

2004-05-30 Thread John Fox
Dear Laura, The normal way to build R packages is to use package-building tools. Instructions are in the manual Writing R Extensions, which is part of the standard R distribution, and, for Windows, at the web site http://www.murdoch-sutherland.com/Rtools/. If you're willing to forgo

[R] zipping a new package revisited

2004-05-30 Thread Laura Holt
In case you're wondering, here it is: Rcmd build --binary --use-zip packname Sorry that I didn't read the Writing R Extensions first. Sincerely, Laura __ [EMAIL PROTECTED] mailing list https://www.stat.math.ethz.ch/mailman/listinfo/r-help PLEASE do read

Re: [R] prcomp help

2004-05-30 Thread Al Piszcz
I located this: (same file with previous issues) Sat Mar 27 13:46:11 UTC 2004, ripley adjust to work with XFree86 4.4.0 headers (and some missing casts) R NEWS,1.2033 R/src/modules/X11 dataentry.c,1.17 AND 1.9.0 release notes o The X11 module can now be built against XFree86 4.4.0

[R] Re: the name 'sed' [was: how to remove . or replace it with NA?]

2004-05-30 Thread Douglas Bates
John Fox [EMAIL PROTECTED] writes: Dear Spenser et al., sed stands for string editor, I believe, and it is a Unix utility, Actually it is a contraction of stream editor. From the manual page for sed on my system DESCRIPTION Sed is a stream editor. A stream editor is used to

Re: [R] prcomp help

2004-05-30 Thread Al Piszcz
I removed dataentry.c from the Makefile at: R-1.9.0/src/modules/X11 The build appeared to be successful. However when I run make check as you recommend, it 'hangs' or continues to run with no progress. PID USER PR NI VIRT RES SHR S %CPU %MEMTIME+ COMMAND 9987 ap25 0

[R] Application of tree() to get alternative confidence bounds - is this feasible?

2004-05-30 Thread Briggs, Meredith M
Hello I'm currently using Monte Carlo techniques to estimate prices (variable not static) from the following type of data: OLE Object: Microsoft Excel Worksheet Each row is a record from group A and the cells in all but the last column are the volumes of 'widgets' in

Re: [R] prcomp help

2004-05-30 Thread Al Piszcz
I downloaded and built the development version of R dated 30 May. make check, and prcomp were successful. On Sun, 30 May 2004, Uwe Ligges wrote: Date: Sun, 30 May 2004 22:01:58 +0200 From: Uwe Ligges [EMAIL PROTECTED] To: Al Piszcz [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [R] prcomp

Re: [R] summary.lm

2004-05-30 Thread Marc R. Feldesman
At 12:00 PM 5/30/2004, Roger D. Peng wrote: Is it possible you have a locally modified version of summary.lm() lying around. Here are the first few lines of summary.lm() in R 1.9.0: That was the problem. But since I've never even looked at summary.lm until the past few days when this error

Re: [R] panel function in a conditioned lattice graphic

2004-05-30 Thread Anthony Darrouzet-Nardi
On Saturday 29 May 2004 20:18, Anthony Darrouzet-Nardi wrote: I have a followup question. Suppose I want to encode two different variables within a panel: one variable encoded by plotting character and one variable encoded by symbol color (as if I could use two groups variables). The dataframe

[R] glmm?

2004-05-30 Thread Spencer Graves
Is there an easy way to get confidence intervals from glmm in Jim Lindsey's library(repeated)? Consider the following slight modification of an example from the help page: df - data.frame(r=rbinom(10,10,0.5), n=rep(10,10), x=c(rep(0,5), + rep(1,5)), nest=1:10) fit -

[R] Re: Rhelp: Need help interpreting plots in spatstat

2004-05-30 Thread Adrian Baddeley
Dear Lisa 'spatstat' has extensive help files which would help you to resolve this. help(Gest) says that the output value of Gest() includes a vector Gest()$raw which is the raw (i.e. without edge correction) estimate of the G function. It is not a very good estimate of G because it can be

Re: [R] Adding key to simple plot() function

2004-05-30 Thread Paul Murrell
Hi The text() function has a pos argument for positioning labels beside (x,y) locations. Do you know about the legend() function for creating a key? Paul Laura Quinn wrote: I already tried this but encountered a number of problems - firstly the point labels overlie the actual points meaning the

[R] problems with quantreg installation

2004-05-30 Thread arinbasu
Hi All: I tried to download and install quantreg (a package for doing quantile regression) from CRAN. When I ran install.packages (quantreg) within an R session, I got the following error message: Beginning of error message --- * Installing *source* package 'quantreg' ... ** libs g77

Re: [R] orca binary?

2004-05-30 Thread A.J. Rossini
Thanks to Uwe for the binary build -- ROrca 0.4 now is available for Windows (I've copied his files onto the canonical site, it's available at http://www.analytics.washington.edu/~rossini/rorca/rorca_0.4.zip ). For those unfamiliar with Orca, it is a toolkit for building dynamic interactive

Re: [R] problems with quantreg installation

2004-05-30 Thread Jason Turner
make: g77: Command not found make: *** [akj.o] Error 127 You need a fortran compiler. Search the RPM lists for g77 (or just fortran). Cheers Jason __ [EMAIL PROTECTED] mailing list https://www.stat.math.ethz.ch/mailman/listinfo/r-help PLEASE do