Re: [R] Converting qqplot2 qplot() to grammar?

2008-05-21 Thread hadley wickham
> Now that this part is working there are two more aspects of the plot I > would like to remove: (in order of importance) > > * The row/column facetting labels. You should be able to find that using grid.ls() > * the whitespace that surrounds the plot. I'd like the ggsave output to > resemble the

Re: [R] Converting qqplot2 qplot() to grammar?

2008-05-13 Thread hadley wickham
On Mon, May 12, 2008 at 3:31 PM, B. Bogart <[EMAIL PROTECTED]> wrote: > Hello all, > > I've been using the following qplot command: > > qplot(pixX,pixY, data=som, geom="tile", fill=rgb) + > scale_fill_identity() + opts(aspect.ratio = .75) + facet_grid(unitX ~ unitY) > > Now I would like to conv

[R] Converting qqplot2 qplot() to grammar?

2008-05-12 Thread B. Bogart
Hello all, I've been using the following qplot command: qplot(pixX,pixY, data=som, geom="tile", fill=rgb) + scale_fill_identity() + opts(aspect.ratio = .75) + facet_grid(unitX ~ unitY) Now I would like to convert it into the explicit ggplot grammar, so I can remove the extras: axes, labels, back

[R] Converting qqplot2 qplot() to grammar?

2008-05-12 Thread B. Bogart
Hello all, I've been using the following qplot command: qplot(pixX,pixY, data=som, geom="tile", fill=rgb) + scale_fill_identity() + opts(aspect.ratio = .75) + facet_grid(unitX ~ unitY) Now I would like to convert it into the explicit ggplot grammar, so I can remove the extras: axes, labels, back