[R] Alternative to xyplot()?

2007-07-17 Thread Manuel Morales
Hello list, Is anyone aware of a non-lattice-based alternative to xyplot()? Thanks! Manuel -- http://mutualism.williams.edu __ R-help@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide

Re: [R] Alternative to xyplot()?

2007-07-17 Thread Gavin Simpson
On Tue, 2007-07-17 at 16:39 -0400, Manuel Morales wrote: Hello list, Is anyone aware of a non-lattice-based alternative to xyplot()? x - rnorm(20) y - rnorm(20) plot(x, y) ? If you mean some specific aspect of xyplot(), you'll have to tell us what this is. HTH G

Re: [R] Alternative to xyplot()?

2007-07-17 Thread Manuel Morales
On Tue, 2007-07-17 at 22:18 +0100, Gavin Simpson wrote: On Tue, 2007-07-17 at 16:39 -0400, Manuel Morales wrote: Hello list, Is anyone aware of a non-lattice-based alternative to xyplot()? x - rnorm(20) y - rnorm(20) plot(x, y) ? If you mean some specific aspect of xyplot(), you'll

Re: [R] Alternative to xyplot()?

2007-07-17 Thread Ben Bolker
Manuel Morales Manuel.A.Morales at williams.edu writes: Sorry. I was thinking of the groups functionality, as illustrated below: grps-rep(c(1:3),10) x-rep(c(1:10),3) y-x+grps+rnorm(30) library(lattice) xyplot(y~x,group=grps, type=c(r,p)) The points (type p) are easy, the regression

Re: [R] Alternative to xyplot()?

2007-07-17 Thread Stephen Tucker
What's wrong with lattice? Here's an alternative: library(ggplot2) ggplot(data=data.frame(x,y,grps=factor(grps)), mapping=aes(x=x,y=y,colour=grps)) + # define data geom_identity() +# points geom_smooth(method=lm) # regression line

Re: [R] Alternative to xyplot()?

2007-07-17 Thread hadley wickham
On 7/18/07, Stephen Tucker [EMAIL PROTECTED] wrote: What's wrong with lattice? Here's an alternative: library(ggplot2) ggplot(data=data.frame(x,y,grps=factor(grps)), mapping=aes(x=x,y=y,colour=grps)) + # define data geom_identity() +# points