Skip to content

assign unique size of point in xyplot

3 messages · Garritt Page, Deepayan Sarkar, Hadley Wickham

1 day later
#
On Thu, May 14, 2009 at 12:14 PM, Garritt Page <page2990 at gmail.com> wrote:
Take a look at the example in ?level.colors; you just need to modify
it to work with cex instead of color.

-Deepayan
#
On Thu, May 14, 2009 at 2:14 PM, Garritt Page <page2990 at gmail.com> wrote:
This is pretty easy to do in ggplot2:

library(ggplot2)
qplot(noutliers, cp, colour=analysis, size=area, facets = slevel ~ tlevel) +
  geom_line(size = 0.5)

Hadley