Displaying 1 result from an estimated 1 matches for "summndata".
2013 Sep 19
3
lattice: double y - problem changing axis color after doubleYScale
...= rep(c(0.1, 0.2, 0.4), each = 40)),
fyear = rep(c('2007', '2008'), each = 100*2),
Station = sample(c('B1', 'H2', 'H3', 'H4'), 400, replace = TRUE),
Week = sample(c('19', '21', '23', '25'), 400, replace = TRUE))
SummNdata <- ddply(Ndata, .(Week, fyear, Station), summarise,
mean = mean(Ncellpercent),
sd = sd(Ncellpercent))
names(Pdata)
SummPdata <- ddply(Pdata, .(Week, fyear, Station), summarise,
mean = mean(Ppercentcell),
sd = sd(Pperc...