days(x) weekdays(x, abb=T) months(x, abb=T) quarters(x, abb=T) years(x)
# creates a sample dates object of julian dates x <- c(10,11,12,42,44,45,101,102,212,213,214,300) dts <- dates(x)# identifies a weekday or month with each julian day weekdays(dts) months(dts)
# produces barplot of # of days in x appearing on particular # weekday or month plot(weekdays(dts)) plot(months(dts))
# produces boxplots of julian date by weekday or month plot(weekdays(dts), x) plot(months(dts), x)