Displaying 1 result from an estimated 1 matches for "ef1b".
Did you mean:
1f1b
2008 Aug 04
1
xyplot strip=function for two conditioning variables
Dear list,
for a data structure like in df:
set.seed(100)
Treatment<-rep(c("Nitrogen","Carbon", "Sulfur"),each=9)
week<-rep(c(1,5,9),3,each=3)
genes<-rep(c("18s", "EF1b", "NR"),9)
copies<-rnorm(27, 1000000,400000)
df<-data.frame(Treatment,week,genes,copies)
i wrote this code for a xyplot:
library(lattice)
PLOT<-xyplot(data=df, copies~week|Treatment+genes,type=c("b","g"))
I would like to change PLOT in a way, that the...