Displaying 1 result from an estimated 1 matches for "2010fall".
Did you mean:
10fall
2011 Jul 20
0
Cleveland Dot plots: tick labels and error bars
...y ranges with
ylim=ylimlist, each panel has its own y and x axis tick labels. I would like
the figure panels to fit to gether like this simple figure.
2nd issue:
I'd like to create standard error bars for each point. The most direct
option I've observed is from:
http://www.unc.edu/courses/2010fall/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$lower...