Skip to content

Latest commit

 

History

History
105 lines (58 loc) · 1.64 KB

File metadata and controls

105 lines (58 loc) · 1.64 KB
title description keywords author ms.author manager ms.date ms.topic ms.service ms.assetid ROBOTS audience ms.devlang ms.reviewer ms.suite ms.tgt_pltfrm ms.custom
rxMultiTest function (revoAnalytics) | Microsoft Docs
Collects a list of tests for variable independence into a table.
(revoAnalytics), rxMultiTest, print.rxMultiTest, htest
chuckheinzelman
charlhe
cgronlun
07/15/2019
reference
mlserver

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)