
Last chance! 50% off unlimited learning
Sale ends in
Fortify methods for objects produced by multcomp
# S3 method for glht
fortify(model, data, ...)# S3 method for confint.glht
fortify(model, data, ...)
# S3 method for summary.glht
fortify(model, data, ...)
# S3 method for cld
fortify(model, data, ...)
an object of class glht
, confint.glht
,
summary.glht
or multcomp::cld()
other arguments to the generic ignored in this method.
# NOT RUN {
if (require("multcomp")) {
amod <- aov(breaks ~ wool + tension, data = warpbreaks)
wht <- glht(amod, linfct = mcp(tension = "Tukey"))
fortify(wht)
ggplot(wht, aes(lhs, estimate)) + geom_point()
CI <- confint(wht)
fortify(CI)
ggplot(CI, aes(lhs, estimate, ymin = lwr, ymax = upr)) +
geom_pointrange()
fortify(summary(wht))
ggplot(mapping = aes(lhs, estimate)) +
geom_linerange(aes(ymin = lwr, ymax = upr), data = CI) +
geom_point(aes(size = p), data = summary(wht)) +
scale_size(trans = "reverse")
cld <- cld(wht)
fortify(cld)
}
# }
Run the code above in your browser using DataLab