Re: [R] param:qsec in ggplot2

2009-07-23 Thread Matthieu Dubois
Hi, qseq is a variable from the data.frame mtcars, that has been used to create the initial plot p. library(ggplot2) p <- ggplot(mtcars, aes(wt, mpg)) p + geom_point(aes(size = qsec) Just replace qseq by your variable of interest. Regards, Matthieu ___

Re: [R] param:qsec in ggplot2

2009-07-23 Thread ONKELINX, Thierry
: donderdag 23 juli 2009 6:14 Aan: r-help@r-project.org Onderwerp: [R] param:qsec in ggplot2 Hii i have been trying to do a scatter plot with ggplot2, like the plot 6 here (http://had.co.nz/ggplot2/geom_point.html) .. where the points size vary with values > p + geom_point(aes <http://had.co.nz/g

[R] param:qsec in ggplot2

2009-07-22 Thread Mohan S
Hii i have been trying to do a scatter plot with ggplot2, like the plot 6 here (http://had.co.nz/ggplot2/geom_point.html) .. where the points size vary with values > p + geom_point(aes (size = qsec)) but am not sure how to setup the parameter - qsec cou