Displaying 1 result from an estimated 1 matches for "total_nitrogen".
2011 Jul 20
0
Cleveland Dot plots: tick labels and error bars
Dear list,
I've been learning how to make a 2x2 paneled dotplot in lattice without any
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...