olmm-summary: Printing and summarizing 'olmm' objects

Description Usage Arguments Value Author(s) See Also Examples

Description

Generates summary results of a fitted olmm object.

Usage

1
2
3
4
5
6
## S3 method for class 'olmm'
summary(object, etalab = c("int", "char", "eta"),
        silent = FALSE, ...)

## S3 method for class 'olmm'
print(x, etalab = c("int", "char", "eta"), ...)

Arguments

object, x

a fitted olmm object.

etalab

character. Whether category-specific effects should be labeled by integers of categories (default), the labels of the categories or the index of the predictor.

silent

logical: should a warning be reported if the computation of the covariance matrix for the estimated coefficients failed.

...

additional arguments passed to print.

Value

The summary method returns a list of class "summary.olmm".

Author(s)

Reto Buergin

See Also

olmm, olmm-methods

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
## ------------------------------------------------------------------- #
## Dummy example:
##
## Printing the summary of a model on artificially generated data.
## ------------------------------------------------------------------- #

data(vcrpart_1)

model <- olmm(y ~ wave + z4:treat + re(1|id), vcrpart_1, subset = 1:60)

print(model, digits = 2)

summary(model, digits = 2)

vcrpart documentation built on April 19, 2021, 1:07 a.m.