plot.re: Plot an re Object

View source: R/plot.re.R

plot.reR Documentation

Plot an re Object

Description

Plots an re object returned from the function getSigTests.

Usage

 ## S3 method for class 're'
plot(x,...)

Arguments

x

Object of class re.

...

Additional parameters.

Details

This function plots a rejection plot for an existing re object.

Value

A plot from a re object

Author(s)

Daniel Fischer

See Also

getSigTests

Examples

  X <- matrix(c(rnorm(500,2,1),rnorm(600,2,1),rnorm(400,2.2,1)),byrow=TRUE, ncol=10)
  colnames(X) <- letters[1:10]
  g <- c(rep(1,50),rep(2,60),rep(3,40))

  test <- gmw(X,g,test="kw",type="external")

  re1 <- getSigTests(test)
  
  plot(re1)

gMWT documentation built on April 19, 2023, 5:11 p.m.