Class GicScores
java.lang.Object
edu.cmu.tetrad.algcomparison.score.GicScores
- All Implemented Interfaces:
ScoreWrapper
,HasParameters
,TetradSerializable
,Serializable
@Score(name="Generalized Information Criterion Scores",
command="gic-scores",
dataType={Continuous,Covariance})
@LinearGaussian
public class GicScores
extends Object
implements ScoreWrapper
The GicScores class is an implementation of the ScoreWrapper interface that calculates the Generalized Information
Criterion (GIC) scores for a given data model. It is used to test the independence between variables in the data
set.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the data type that the search requires, whether continuous, discrete, or mixed.Returns a short of this independence test.Returns the parameters that this search uses.getScore
(DataModel dataSet, Parameters parameters) Returns true, iff x and y are independent, conditional on z for the given data set.getVariable
(String name) Returns the variable with the given name.
-
Constructor Details
-
GicScores
public GicScores()Constructs a new instance of the algorithm.
-
-
Method Details
-
getScore
Returns true, iff x and y are independent, conditional on z for the given data set.- Specified by:
getScore
in interfaceScoreWrapper
- Parameters:
dataSet
- The data set to test independence against.parameters
- The parameters of the test.- Returns:
- True iff independence holds.
-
getDescription
Returns a short of this independence test.- Specified by:
getDescription
in interfaceScoreWrapper
- Returns:
- This description.
-
getDataType
Returns the data type that the search requires, whether continuous, discrete, or mixed.- Specified by:
getDataType
in interfaceScoreWrapper
- Returns:
- This type.
-
getParameters
Returns the parameters that this search uses.- Specified by:
getParameters
in interfaceHasParameters
- Specified by:
getParameters
in interfaceScoreWrapper
- Returns:
- A list for String names of parameters.
-
getVariable
Returns the variable with the given name.- Specified by:
getVariable
in interfaceScoreWrapper
- Parameters:
name
- the name.- Returns:
- the variable.
-