plot.clme: S3 method to plot objects of class 'clme'

Description Usage Arguments Note See Also Examples

View source: R/plot.clme.r

Description

Generates a basic plot of estimated coefficients which are subject to constraints (theta_1 ). Lines indicate individual constraints (not global tests) and significance.

Usage

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

Arguments

x

object of class 'clme' to be plotted.

...

additional plotting arguments.

Note

While it is possible to plot the output of a clme fit, this will only plot the fitted means. To indicate significance, plotting must be performed on the summary of a clme fit. This method will change the class so that plot.summary.clme will be called properly.

See Also

CLME-package clme plot.summary.clme

Examples

1
2
3
4
5
6
7
8
9
## Not run: 
  set.seed( 42 )
  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 = 10)
  plot( clme.out )

## End(Not run)

jelsema/CLME documentation built on June 13, 2020, 10:24 a.m.