formula.clme: Extract formula

Description Usage Arguments Details Value See Also Examples

View source: R/utilities.r

Description

Extracts the formula from objects of class clme.

Usage

1
2
## S3 method for class 'clme'
formula(x, ...)

Arguments

x

object of class clme.

...

space for additional arguments

Details

The package CLME parametrizes the model with no intercept term. If an intercept was included, it will be removed automatically.

Value

Returns a formula object

See Also

CLME-package clme

Examples

1
2
3
4
5
6
data( rat.blood )
cons <- list(order = "simple", decreasing = FALSE, node = 1 )
clme.out <- clme(mcv ~ time + temp + sex + (1|id), data = rat.blood , 
                 constraints = cons, seed = 42, nsim = 0)

formula( clme.out )

CLME documentation built on July 8, 2020, 5:49 p.m.