Displaying 1 result from an estimated 1 matches for "lower50".
Did you mean:
lower10
2011 Jul 20
0
Cleveland Dot plots: tick labels and error bars
...0fall/ecol/563/001/docs/solutions/assign2.htm
It seems to use the following panel function to create 95% conf. intervals:
panel=function(x,y) {
panel.grid(v=0, h=-6, lty=3)
panel.segments(new.data$lower95, as.numeric(y), new.data$upper95,
as.numeric(y), lty=1, col=1)
panel.segments(new.data$lower50, as.numeric(y), new.data$upper50,
as.numeric(y), lty=1, lwd=4, col='grey60')
panel.xyplot(x, y, pch=16, cex=1.2, col='white')
panel.xyplot(x, y, pch=1, cex=1.1, col='black')
panel.abline(v=0, col=2, lty=2)
}
I tried to adapt this to my data resulting in the following co...