cftest {multcomp}R Documentation

Testing Estimated Coefficients

Description

A convenience function for univariate testing via z- and t-tests of estimated model coefficients

Usage

cftest(model, ...)

Arguments

model

a fitted model.

...

additional arguments passed to summary.glht.

Details

The usual z- or t-tests are tested without adjusting for multiplicity.

Value

An object of class summary.glht.

See Also

coeftest

Examples


  ## The function is currently defined as
  function(model, ...)
      summary(glht(model), test = univariate(), ...)

  lmod <- lm(dist ~ speed, data = cars)
  summary(lmod)
  cftest(lmod)
  

[Package multcomp version 1.4-1 Index]