summary.grouped {grouped} | R Documentation |
Summarizes the fit of grouped
objects.
## S3 method for class 'grouped': summary(object, ...)
object |
an object of class grouped . |
... |
additional parameters; currently none is used. |
summary.grouped
provides summaries of the fit for grouped
objects, including
computation of Wald tests for the estimated parameters.
a list of class summ.grouped
with the following components:
object |
the fitted object . |
coefficients |
a numeric matrix containing the estimated coefficients, their standard errors, t-values and p-values. |
sigma |
the estimated standard deviation of the underlying latent variable. |
se.sigma |
the estimated standard error for the estimation of sigma . |
logLik |
the value of the log-likelihood under the estimated parameters. |
AIC |
the AIC under the fitted model. |
BIC |
the BIC under the fitted model. |
Dimitris Rizopoulos d.rizopoulos@erasmusmc.nl
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)