Re: [R] Changes titles in ggplot2 plot

2011-02-13 Thread Shige Song
rillo > Supervisory Fishery Biologist > Department of the Interior > US Fish & Wildlife Service > California, USA > http://www.fws.gov/redbluff/rbdd_jsmp.aspx > > > > > - Original Message >> From: Shige Song >> To: r-help Help >> Sent: S

Re: [R] Changes titles in ggplot2 plot

2011-02-12 Thread Felipe Carrillo
From: Shige Song > To: r-help Help > Sent: Sat, February 12, 2011 7:07:39 PM > Subject: [R] Changes titles in ggplot2 plot > > Dear Colleagues, > > In the following simple ggplot2 code: > > m <- ggplot(d.fig, aes(time, prob)) > m +

[R] Changes titles in ggplot2 plot

2011-02-12 Thread Shige Song
Dear Colleagues, In the following simple ggplot2 code: m <- ggplot(d.fig, aes(time, prob)) m + stat_summary(fun.data = "median_hilow", conf.int = .95, geom = "smooth") + facet_wrap(~ Cohort, nrow=1) + coord_cartesian(ylim = c(0, .03)) --