search for: ylimlist

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

Did you mean: lmlist
2011 Jul 20
0
Cleveland Dot plots: tick labels and error bars
...previous experience using lattice. my code thusfar is: nut<-read.table("/Users/colinwahl/Desktop/nutsimp_noerror.csv", T, sep= ",") attach(nut) nut1<-data.frame(Nitrate, Total_Nitrogen, Phosphate, Total_Phosphorus) nut1<-as.matrix(nut1) rownames(nut1)<-group ylimlist=list(c(0,10), c(0,10), c(0,0.25), c(0,0.25)) dotplot(nut1, groups=FALSE, horizontal=FALSE, scales = list(relation='free' ), ylim=ylimlist, ylab="Nutrient Concentration (mg/L)") I have two issues currently: eliminating y and x tick labels between panels, and creating error bars....