Learn R Programming

CLME (version 2.0-12)

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

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

# S3 method for clme
plot(x, ...)

Arguments

x

object of class 'clme' to be plotted.

...

additional plotting arguments.

See Also

CLME-package clme plot.summary.clme

Examples

Run this code
# 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 )
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab