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) > > x=seq(-10,10,.1) > y=cos(x) > z=sin(x)*10 One crude way to get around it is: df <- data.frame(x,y,z) df <- rescaler(df) - ie. scale all variables to common scales Hadley ______________________________________________ [email protected] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.
