Re: [R] Different axis limits for each facet in ggplot2

2007-07-17 Thread Karl Ove Hufthammer
hadley wickham: Is it possible to have different axis limit for each facet in a ggplot2 plot? Here is an example: Not yet, although it is on the to do list. Thanks for the answer. I’ll be looking forward to the next version(s) then. :) -- Karl Ove Huftammer

[R] Different axis limits for each facet in ggplot2

2007-07-16 Thread Karl Ove Hufthammer
Hi! Is it possible to have different axis limit for each facet in a ggplot2 plot? Here is an example: -- library(ggplot2) x=seq(-10,10,.1) y=cos(x) z=sin(x)*10 dat=melt(data.frame(x,y,z), id.var=x) qplot( x, value, data=dat,

Re: [R] Different axis limits for each facet in ggplot2

2007-07-16 Thread hadley wickham
On 7/16/07, Karl Ove Hufthammer [EMAIL PROTECTED] wrote: Hi! Is it possible to have different axis limit for each facet in a ggplot2 plot? Here is an example: Not yet, although it is on the to do list. -- library(ggplot2)