rxMultiTest: Multiple Variable Independence Tests
Description
Collects a list of tests for variable independence into a table.
Usage
rxMultiTest(tests, title = NULL)
## S3 method for class `rxMultiTest':
print (x, ...)
Arguments
tests
a list of objects of class htest.
title
a title for the multiTest table. If NULL
, the title is determined from the method slot of the htest.
x
object of class rxMultiTest.
...
additional arguments to the print method.
Value
an object of class rxMultiTest.
Author(s)
Microsoft Corporation Microsoft Technical Support
See Also
rxChiSquaredTest, rxFisherTest, rxKendallCor, rxPairwiseCrossTab, rxRiskRatio, rxOddsRatio.
Examples
data(mtcars)
tests <- list(t.test(mpg ~ vs, data = mtcars),
t.test(hp ~ vs, data = mtcars))
rxMultiTest(tests)