Displaying 1 result from an estimated 1 matches for "lcl95".
Did you mean:
ucl95
2010 May 25
2
segplot (latticeExtra)
...--------cut here---------------start------------------->---
library(latticeExtra)
data(USCancerRates)
uscr.w <- subset(USCancerRates, state == "Washington")
uscr.w$year <- gl(4, 10, length=nrow(uscr.w), labels=format(seq(2001, 2004)))
segplot(reorder(factor(county), rate.male) ~ LCL95.male + UCL95.male | year,
data=uscr.w, scales="free")
---<--------------------cut here---------------end--------------------->---
This still plots all levels of county in every panel. Based on a
similar need for dotplot in another thread, the following looked
promising, bu...