Displaying 1 result from an estimated 1 matches for "lattice_boxplot_prep".
2011 Jun 26
1
bwplot questions: box order, axis breaks, and multiple y-axis labels
...all,
I used bwplot in lattice to create a 6-panel boxplot grouped by a
conditioning variable (param) that displays concentration (conc) in
response to treatment (trtmnt). Here is the functional part of my
code followed by my three questions:
library(lattice);
ww<-read.csv(file="c:/Rdata/lattice_boxplot_prep.csv",header=TRUE,sep=",");
attach(ww);
mylist<-list(c(0,200), c(0,60), c(0,1000000), c(0,80), c(0, 5), c(0,300))
print(ww<-bwplot(conc~trtmnt| param, data=ww, layout=c(1,6),
as.table=TRUE, between=list(y=1), strip=FALSE, scales = list(y =
list(alternating = c(1,1), tck=c(1,0),...