| cftest {multcomp} | R Documentation |
A convenience function for univariate testing z- and t-tests of estimated model coefficients
cftest(model, ...)
model |
a fitted model. |
... |
additional arguments passed to summary.glht. |
The usual z- or t-tests are tested without adjusting for multiplicity
An object of class summary.glht.
## The function is currently defined as
function(model, ...)
summary(glht(model), test = univariate(), ...)
lmod <- lm(dist ~ speed, data = cars)
summary(lmod)
cftest(lmod)