Skip to content
Prev 181983 / 398502 Next

using chron vector with boxplot

Try this:

  boxplot(as.matrix(data) ~ as.Date(date), cex.axis = 0.5, las = 2)

or if all the dates are in the same year and month as they are here
then you might want to just display the day of the month:

  boxplot(as.matrix(data) ~ month.day.year(date)$day)
On Sun, May 31, 2009 at 1:45 PM, Kenneth Takagi <kat215 at psu.edu> wrote: