Class IndTestPositiveCorr
java.lang.Object
edu.cmu.tetrad.search.work_in_progress.IndTestPositiveCorr
- All Implemented Interfaces:
IndependenceTest
Checks conditional independence of variable in a continuous data set using Fisher's Z test. See Spirtes, Glymour, and
Scheines, "Causation, Prediction and Search," 2nd edition, page 94.
- Author:
- josephramsey, Frank Wimberly adapted IndTestCramerT for Fisher's Z
-
Constructor Summary
ConstructorsConstructorDescriptionIndTestPositiveCorr(DataSet dataSet, double alpha) Constructs a new Independence test which checks independence facts based on the correlation matrix implied by the given data set (must be continuous). -
Method Summary
Modifier and TypeMethodDescriptioncheckIndependence(Node x0, Node y0, Set<Node> _z0) Determines whether variable x is independent of variable y given a list of conditioning variables z.booleandetermines(List<Node> z, Node x) IfisDeterminismAllowed(), deters to IndTestFisherZD; otherwise throws UnsupportedOperationException.doublegetAlpha()Gets the getModel significance level.getCov()Returns the covariance matrix.getData()Returns the datasets for this testdoubleintReturns the sample size.getVariable(String name) Returns The variable by the given name.indTestSubset(List<Node> vars) Creates a new independence test instance for a subset of the variables.booleanReturns true if the test prints verbose output.voidsetAlpha(double alpha) Sets the significance level at which independence judgments should be made.voidsetVariables(List<Node> variables) voidsetVerbose(boolean verbose) Sets whether this test will print verbose output.toString()Returns a string representation of this test.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface edu.cmu.tetrad.search.IndependenceTest
checkIndependence, determines, getVariableNames
-
Constructor Details
-
IndTestPositiveCorr
Constructs a new Independence test which checks independence facts based on the correlation matrix implied by the given data set (must be continuous). The given significance level is used.- Parameters:
dataSet- A data set containing only continuous columns.alpha- The alpha level of the test.
-
-
Method Details
-
indTestSubset
Creates a new independence test instance for a subset of the variables.- Specified by:
indTestSubsetin interfaceIndependenceTest- Parameters:
vars- The sublist of variables.
-
checkIndependence
Determines whether variable x is independent of variable y given a list of conditioning variables z.- Specified by:
checkIndependencein interfaceIndependenceTest- Parameters:
x0- the one variable being compared.y0- the second variable being compared._z0- the list of conditioning variables.- Returns:
- true iff x _||_ y | z.
- Throws:
RuntimeException- if a matrix singularity is encountered.- See Also:
-
getPValue
public double getPValue()- Returns:
- the probability associated with the most recently computed independence test.
-
getAlpha
public double getAlpha()Gets the getModel significance level.- Specified by:
getAlphain interfaceIndependenceTest- Returns:
- This level.
-
setAlpha
public void setAlpha(double alpha) Sets the significance level at which independence judgments should be made. Affects the cutoff for partial correlations to be considered statistically equal to zero.- Specified by:
setAlphain interfaceIndependenceTest- Parameters:
alpha- This level.
-
getVariables
- Specified by:
getVariablesin interfaceIndependenceTest- Returns:
- the list of variables over which this independence checker is capable of determinine independence relations-- that is, all the variables in the given graph or the given data set.
-
setVariables
-
getVariable
Description copied from interface:IndependenceTestReturns The variable by the given name.- Specified by:
getVariablein interfaceIndependenceTest- Returns:
- the variable with the given name.
-
determines
IfisDeterminismAllowed(), deters to IndTestFisherZD; otherwise throws UnsupportedOperationException.- Throws:
UnsupportedOperationException
-
getData
- Specified by:
getDatain interfaceIndependenceTest- Returns:
- the data set being analyzed.
- See Also:
-
toString
Description copied from interface:IndependenceTestReturns a string representation of this test.- Specified by:
toStringin interfaceIndependenceTest- Overrides:
toStringin classObject- Returns:
- a string representation of this test.
-
getCov
Description copied from interface:IndependenceTestReturns the covariance matrix.- Specified by:
getCovin interfaceIndependenceTest- Returns:
- This matrix.
-
getDataSets
Description copied from interface:IndependenceTestReturns the datasets for this test- Specified by:
getDataSetsin interfaceIndependenceTest- Returns:
- these datasets.
-
getSampleSize
public int getSampleSize()Description copied from interface:IndependenceTestReturns the sample size.- Specified by:
getSampleSizein interfaceIndependenceTest- Returns:
- This size.
-
isVerbose
public boolean isVerbose()Description copied from interface:IndependenceTestReturns true if the test prints verbose output.- Specified by:
isVerbosein interfaceIndependenceTest- Returns:
- True if the case.
-
setVerbose
public void setVerbose(boolean verbose) Description copied from interface:IndependenceTestSets whether this test will print verbose output.- Specified by:
setVerbosein interfaceIndependenceTest- Parameters:
verbose- True, if so.
-