Displaying 1 result from an estimated 1 matches for "df2009".
Did you mean:
2f2009
2008 Dec 01
1
Help with lattice graphics
...? ylab="y",
????????? main="A test lattice plot")
## lattice code doesn't give the desired plot
## Next try with the graphics package
## Seems to be easier to get the desired plot
##First, some preprocessing of data
df2007<-dataf[dfyr==2007,];df2008<-dataf[dfyr==2008,];df2009<-dataf[dfyr==2009,];
y2007<-matrix(df2007$y,ncol=nb,nrow=na)
y2008<-matrix(df2008$y,ncol=nb,nrow=na)
y2009<-matrix(df2009$y,ncol=nb,nrow=na)
colnames(y2007)<-vec_b;colnames(y2008)<-vec_b;colnames(y2009)<-vec_b;
rownames(y2007)<-vec_a;rownames(y2008)<-vec_a;rownames(y2009)...