print.re {gMWT} | R Documentation |
Print an re Object
Description
Prints an re
object.
Usage
## S3 method for class 're'
print(x,...)
Arguments
x |
Object of class |
... |
Additional parameters. |
Details
The print function displays in a list the significant variables for a chosen alpha and
the optimal alpha in terms of the best ratio between expected and observed significant
tests. For more details see also rejectionPlot
.
Value
Content of an re
object
Author(s)
Daniel Fischer
See Also
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)
re1
[Package gMWT version 1.4 Index]