Skip to content
Prev 156884 / 398506 Next

xyplot problem

On Tue, Sep 23, 2008 at 8:27 AM, Pascal A. Niklaus <pniklaus at ethz.ch> wrote:
You might find this easier to do with ggplot2:

install.packages("ggplot2")
library(ggplot2)

qplot(x, y, size = sz, facets = . ~ grp)

ggplot2 also automatically scales the size and provides a legend.

Hadley