CITestResult-class: Data class to store the results of a conditional independence test...
Description
Data class to store the results of a conditional independence testSlots
targetName
:- (
character
) the name of the first variable
sourceInx
:- (
numeric
) the index of the second variable
sourceName
:- (
character
) the name of the second variable
condSetInx
:- (
numeric
) the indexes of variables we condition on
condSetName
:- (
character
) the names of variables we condition on
pValue
:- (
numeric
) the associated p value
testType
:- (
character
) the type of the conditional independence test performed
reliable
:- (
logical
) if this appears to be a reliable test of conditional independence
Methods
[[
signature(x = "CITestResult", i = "ANY", j = "ANY")
: Access slots using the double square bracket notation
names
signature(x = "CITestResult")
: Names of slots that can be accessed with $ notation
show
signature(object = "CITestResult")
: show method for CITestResult
Details
This class stored the results from DDDataSet::ciTest()
. It stores the
indexes and names of two variables involved in the test, the conditioning set
as well as the P-value and type of test.