Hello,
When plotting the results of a TukeyHSD multiple comparisons
procedure with an ANOVA (lm) object, an extra line appears
in the confidence intervals that contain 0. For example (this
is straight from the TukeyHSD helpfile):
summary(fm1 <- aov(breaks ~ wool + tension, data = warpbreaks))
TukeyHSD(fm1, "tension", ordered = TRUE)
plot(TukeyHSD(fm1, "tension"))
An extra line segment appears in the interval to the right of the
dotted zero line. Coincidentally, if all of the calculated
intervals for a dataset don't contain zero, this isn't a problem
-- so I guess the line segment "belongs" to the zero line. I
checked R Search and didn't find this mentioned before... but
please let me know if I overlooked something.