Skip to content
Prev 319518 / 398506 Next

plotting

I think you'll find this easiest with ggplot2:

library(ggplot2)

ggplot(dat, aes(x = value, y = time, color = group, symbol = id)) +
geom_point()
# symbol = might not be the right argument -- I'm doing this from memory

or similar....

MW
On Thu, Mar 14, 2013 at 3:46 PM, li li <hannah.hlx at gmail.com> wrote: