Learn R Programming

grouped (version 0.6-0)

summary.grouped: Summary method for grouped objects

Description

Summarizes the fit of grouped objects.

Usage

## S3 method for class 'grouped':
summary(object, ...)

Arguments

object
an object of class grouped.
...
additional parameters; currently none is used.

Value

  • a list of class summ.grouped with the following components:
  • objectthe fitted object.
  • coefficientsa numeric matrix containing the estimated coefficients, their standard errors, $t$-values and $p$-values.
  • sigmathe estimated standard deviation of the underlying latent variable.
  • se.sigmathe estimated standard error for the estimation of sigma.
  • logLikthe value of the log-likelihood under the estimated parameters.
  • AICthe AIC under the fitted model.
  • BICthe BIC under the fitted model.

Details

summary.grouped provides summaries of the fit for grouped objects, including computation of Wald tests for the estimated parameters.

See Also

grouped

Examples

Run this code
m1 <- grouped(cbind(lo, up) ~ treat * x, link = "logit", data = Sdata)
summary(m1)
    
m2 <- grouped(equispaced(r, n) ~ x1 * x2, link = "logit", data = Seeds)
summary(m2)

Run the code above in your browser using DataLab