search for: gof1

Displaying 1 result from an estimated 1 matches for "gof1".

Did you mean: gof
2007 May 21
2
Questions about bwplot
...I have some questions about boxplots with lattice. My data is similar as in the example below, I have two factors (Goodness of Fit and Algorithms) and data values but in each panels the scales are quite different, therefore the normal boxplots produced by set.seed(1) GOF <- factor(rep(c("GOF1","GOF2","GOF3"),each=40)) Alg <- rep(factor(rep(c("A1","A2","A3","R1"),each=10)),3) Value <- c(runif(40),rnorm(40),rnorm(30,10,3),rnorm(10,20,3)) test.data <- data.frame(Alg=Alg,GOF=GOF,Value=Value) library(lattice) bwplot(V...