hey,

On Mon, Sep 14, 2009 at 07:51:42AM -0700, John Kane wrote:
> p  <- ggplot(bmm, aes(x="age", y="bm", colour="pp", group="pp")) 
> p <- p + geom_line()

remove the quotes and it will work:

ggplot(bmm, aes(x=age, y=bm, colour=pp, group=pp))+geom_line()

regards,
 Stefan

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to