Displaying 1 result from an estimated 1 matches for "wtrbody".
Did you mean:
tbody
2011 Apr 05
2
Arrangement of Lattice Histograms - Top to bottom and then left to right?
...For example, what is being done now:
1974 1975 1976
1977 1978 1979
1980 1981 1982
and what I am hoping for:
1974 1977 1980
1975 1978 1981
1976 1979 1982
Thank you kindly,
Les
data=read.csv("AllData.csv",sep=",",header=T)
data$year=as.factor(data$year)
ferg=data[data$wtrbody=="Ferguson",c(1:12)]
library(lattice)
strip.background=trellis.par.get("strip.background")
trellis.par.set(strip.background = list(col = grey(7:1/8)))
histogram(~fl|year, data=ferg, as.table=T, type="count",
col='dark grey',layout=c(3,5),lwd=2, lty=1,...