VarCorr {CLME}R Documentation

Variance components

Description

Extracts variance components for objects of class clme.

Usage

VarCorr(x, sigma, rdig)

## S3 method for class 'summary.clme'
VarCorr(x, sigma, rdig)

## S3 method for class 'clme'
VarCorr(x, sigma, rdig)

Arguments

x

object of class summary.clme.

sigma

(unused at present).

rdig

number of digits to round to (unused at present).

Value

Numeric.

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)
                 
VarCorr( clme.out )




[Package CLME version 2.0-12 Index]