Displaying 1 result from an estimated 1 matches for "horizontial".
Did you mean:
horizontal
2005 Dec 15
2
Lattice graphics with combined plot types
...ot at 0.5 (a red one would
be even better)
I have the following working:
data <-
data.frame(Conductivity=c(.24,.24,.5),Day=as.factor(c(1,2,3)),Valve=as.factor(c("60-V-234","60-V-234","60-V-234")))
print(barchart(Conductivity~Day|Valve,
data=data,
horizontial=FALSE,
# type="p",
xlab=list(label="Day",cex=3),
ylab=list(label=expression(paste("Endotoxin (EU/mL)")),cex=3),
ylim=c(0,1),
# index.cond=list(c(2,1)),
scales=list(x=list(rot=90,cex=2),y=list(cex=2))
,panel=function...