Displaying 1 result from an estimated 1 matches for "somdf".
Did you mean:
sold
2008 May 12
1
Converting qqplot2 qplot() to grammar?
...t grammar, so I
can remove the extras: axes, labels, background, borders, facet labels,
and extra white-space around the plot. (If anyone has suggestions on
removing these please let me know)
I've come up with the following but it is not behaving the same way as
the qplot above:
ggplot(data = somdf, mapping = aes(x = pixX, y = pixY)) +
layer(data = somdf, geom = "tile", fill=rgb) +
scale_y_continuous(name=" ",breaks=" ") +
scale_x_continuous(name=" ",breaks=" ") +
scale_fill_identity() +
coord_cartesian() +
opts(aspect.ratio = .75) +
facet_gri...