Class IndTestMixedMultipleTTest
java.lang.Object
edu.cmu.tetrad.search.work_in_progress.IndTestMixedMultipleTTest
- All Implemented Interfaces:
IndependenceTest
Performs a test of conditional independence X _||_ Y | Z1...Zn where all searchVariables are either continuous or
discrete. This test is valid for both ordinal and non-ordinal discrete searchVariables.
This logisticRegression makes multiple assumptions: 1. IIA 2. Large sample size (multiple regressions needed on subsets of sample)
- Version:
- $Id: $Id
- Author:
- josephramsey, Augustus Mayo.
-
Constructor Summary
ConstructorsConstructorDescriptionIndTestMixedMultipleTTest
(DataSet data, double alpha) Constructor for IndTestMixedMultipleTTest. -
Method Summary
Modifier and TypeMethodDescriptioncheckIndependence
(Node x, Node y, Set<Node> z) Checks for independence between two nodes.boolean
determines
(List<Node> z, Node y) Determines if a given set of nodes z determines the node y.double
getAlpha()
Returns the significance level of the independence test.getData()
Returne the original data for the method.double
Returns the p-value from the last independence test.Retrieves the list of variables used in the original data set.indTestSubset
(List<Node> vars) Returns an Independence test for a sublist of the variables.boolean
Returns whether verbose output should be printed.void
setAlpha
(double alpha) Sets the significance level for the independence test.void
setPreferLinear
(boolean preferLinear) Setter for the fieldpreferLinear
.void
setVerbose
(boolean verbose) Sets whether this test will print verbose output.toString()
Returns a string representation of the object.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface edu.cmu.tetrad.search.IndependenceTest
checkIndependence, determines, getCov, getDataSets, getSampleSize, getVariable, getVariableNames
-
Constructor Details
-
IndTestMixedMultipleTTest
-
-
Method Details
-
setPreferLinear
public void setPreferLinear(boolean preferLinear) Setter for the field
preferLinear
.- Parameters:
preferLinear
- a boolean
-
indTestSubset
Description copied from interface:IndependenceTest
Returns an Independence test for a sublist of the variables.- Specified by:
indTestSubset
in interfaceIndependenceTest
- Parameters:
vars
- The sublist of variables.- Returns:
- an IndependenceTest object
-
checkIndependence
Checks for independence between two nodes.- Specified by:
checkIndependence
in interfaceIndependenceTest
- Parameters:
x
- the first node to check independence fory
- the second node to check independence forz
- a set of conditioning nodes- Returns:
- the result of the independence test
- See Also:
-
getPValue
public double getPValue()Returns the p-value from the last independence test.- Returns:
- the p-value
-
getVariables
Retrieves the list of variables used in the original data set. Note that it returns the variables from the original data set, not the modified dataset.- Specified by:
getVariables
in interfaceIndependenceTest
- Returns:
- The list of variables from the original data set.
-
determines
Determines if a given set of nodes z determines the node y.- Parameters:
z
- The set of nodes to check if they determine y.y
- The node to check if it is determined by z.- Returns:
- true if z determines y, false otherwise.
- Throws:
UnsupportedOperationException
- since not implemented.
-
getAlpha
public double getAlpha()Description copied from interface:IndependenceTest
Returns the significance level of the independence test.- Specified by:
getAlpha
in interfaceIndependenceTest
- Returns:
- This level.
- Throws:
UnsupportedOperationException
- since not implemented.
-
setAlpha
public void setAlpha(double alpha) Sets the significance level for the independence test.- Specified by:
setAlpha
in interfaceIndependenceTest
- Parameters:
alpha
- This level.
-
getData
Returne the original data for the method.- Specified by:
getData
in interfaceIndependenceTest
- Returns:
- This data.
- See Also:
-
toString
Returns a string representation of the object.- Specified by:
toString
in interfaceIndependenceTest
- Overrides:
toString
in classObject
- Returns:
- This.
-
isVerbose
public boolean isVerbose()Returns whether verbose output should be printed.- Specified by:
isVerbose
in interfaceIndependenceTest
- Returns:
- This.
-
setVerbose
public void setVerbose(boolean verbose) Sets whether this test will print verbose output.- Specified by:
setVerbose
in interfaceIndependenceTest
- Parameters:
verbose
- True, if so.
-