The following piece of code produces a trellis dot plot exactly as I would like it, but I would like to automatically add reference lines to the four panels. I have tried searching for examples of code that will let me do this, but so far no luck. Can anyone suggest a simple fix?
dotplot(region ~ productivity | los,
panel = panel.superpose,
group = month,
between = list(x=1, y=0),
index.cond = list(c(4,2,1,3)),
pch = 1:4, col = 1:4,
main = "Monthly Productivity by LoS by Region",
xlab = "Percent",
aspect = 1,
key = list(space = "right",
transparent = TRUE,
points = list(pch = 1:4,
col = 1:4),
text = list(c("Jul", "Aug", "Sep", "Oct"))))
Thanks,
Mike