formula.clme {CLME}R Documentation

Extract formula

Description

Extracts the formula from objects of class clme.

Usage

## 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


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 )


[Package CLME version 2.0-12 Index]