ZL--
You received this message because you are subscribed to the ggplot2 mailing list.
Please provide a reproducible example: http://gist.github.com/270442
To post: email ggp...@googlegroups.com
To unsubscribe: email ggplot2+u...@googlegroups.com
More options: http://groups.google.com/group/ggplot2
Here's one way, setting ylim().
mydf<-data.frame(pos=sample(100,size=12),grp=rep(1:3,each=4))
ggplot(mydf) + geom_vline(aes(xintercept = pos)) + facet_wrap(~ grp) +
ylim(0, 1)
In 0.8.9 this yields a 2 x 2 arrangement of facets; in 0.9.0, it
yields a 1 x 3 arrangement.
HTH,
Dennis