Re: [R] Adding text to multiple plots

2012-01-24 Thread David Winsemius
anner. > plot(Sys.Date(), 1) > text(x=15363, labels="here is today") # nothing plotted > text(x=15363, y=0.8, labels="here is today") # plotted as expected Cheers, Kasia -Original Message- From: David Winsemius [mailto:dwinsem...@comcast.net] Sent: 24 Janu

Re: [R] Adding text to multiple plots

2012-01-24 Thread Katarzyna Sawicka
e' format in order to get the points instead of boxplots. Any idea how to solve that? Cheers, Kasia -Original Message- From: David Winsemius [mailto:dwinsem...@comcast.net] Sent: 24 January 2012 15:22 To: Katarzyna Sawicka Cc: r-help@r-project.org Subject: Re: [R] Adding text to

Re: [R] Adding text to multiple plots

2012-01-24 Thread David Winsemius
On Jan 24, 2012, at 8:12 AM, ksaw wrote: Dear R-helpers, I am trying to add an information about the mean value for each variable within each plot by adding text to the multiple plots in this way: par(mfrow=c(2,2)) df$Date <- as.Date(df$Date, format="%d/%m/%Y") for (i in 2:5){ plo

[R] Adding text to multiple plots

2012-01-24 Thread ksaw
Dear R-helpers, I am trying to add an information about the mean value for each variable within each plot by adding text to the multiple plots in this way: par(mfrow=c(2,2)) df$Date <- as.Date(df$Date, format="%d/%m/%Y") for (i in 2:5){ plot(df$Date, df[[i]]) Mean <- mean(na.omi