Class IndTestMixedMultipleTTest

java.lang.Object
edu.cmu.tetrad.search.work_in_progress.IndTestMixedMultipleTTest
All Implemented Interfaces:
IndependenceTest

public class IndTestMixedMultipleTTest extends Object implements 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 Details

    • IndTestMixedMultipleTTest

      public IndTestMixedMultipleTTest(DataSet data, double alpha)

      Constructor for IndTestMixedMultipleTTest.

      Parameters:
      data - a DataSet object
      alpha - a double
  • Method Details

    • setPreferLinear

      public void setPreferLinear(boolean preferLinear)

      Setter for the field preferLinear.

      Parameters:
      preferLinear - a boolean
    • indTestSubset

      public IndependenceTest indTestSubset(List<Node> vars)
      Returns an Independence test for a sublist of the variables.
      Specified by:
      indTestSubset in interface IndependenceTest
      Parameters:
      vars - The sublist of variables.
      Returns:
      a IndependenceTest object
    • checkIndependence

      public IndependenceResult checkIndependence(Node x, Node y, Set<Node> z)

      checkIndependence.

      Specified by:
      checkIndependence in interface IndependenceTest
      Parameters:
      x - a Node object
      y - a Node object
      z - a Set object
      Returns:
      a IndependenceResult object
      See Also:
    • getPValue

      public double getPValue()

      getPValue.

      Returns:
      the probability associated with the most recently executed independence test, of Double.NaN if p value is not meaningful for tis test.
    • getVariables

      public List<Node> getVariables()

      getVariables.

      Specified by:
      getVariables in interface IndependenceTest
      Returns:
      the list of searchVariables over which this independence checker is capable of determinining independence relations.
    • determines

      public boolean determines(List<Node> z, Node y)
    • getAlpha

      public double getAlpha()

      Getter for the field alpha.

      Specified by:
      getAlpha in interface IndependenceTest
      Returns:
      a double
      Throws:
      UnsupportedOperationException - if there is no significance level.
    • setAlpha

      public void setAlpha(double alpha)
      Sets the significance level.

      Sets the significance level.

      Specified by:
      setAlpha in interface IndependenceTest
      Parameters:
      alpha - This level.
    • getData

      public DataSet getData()
      Returne the original data for the method.
      Specified by:
      getData in interface IndependenceTest
      Returns:
      This data.
      See Also:
    • toString

      public String toString()

      toString.

      Specified by:
      toString in interface IndependenceTest
      Overrides:
      toString in class Object
      Returns:
      a string representation of this test.
    • isVerbose

      public boolean isVerbose()
      Returns whether verbose output should be printed.
      Specified by:
      isVerbose in interface IndependenceTest
      Returns:
      This.
    • setVerbose

      public void setVerbose(boolean verbose)
      Sets whether this test will print verbose output.

      Sets whether verbose output should be printed.

      Specified by:
      setVerbose in interface IndependenceTest
      Parameters:
      verbose - True, if so.