Package edu.cmu.tetrad.sem
Interface Scorer
- All Known Implementing Classes:
DagScorer
public interface Scorer
Interface for a class that represents a scoring of a SEM model.
- Version:
- $Id: $Id
- Author:
- josephramsey
-
Method Summary
Modifier and TypeMethodDescriptiondoublegetBicScore.doublegetChiSquare.getCovMatrix.getDataSet.intgetDof()getDof.getEdgeCoef.getErrorCovar.getEstSem.doublegetFml()getFml.getMeasuredNodes.intgetNumFreeParams.doublegetPValue.getSampleCovar.intgetSampleSize.getVariables.doublescore.toString()toString.
-
Method Details
-
score
score.
- Parameters:
dag- aGraphobject- Returns:
- a double
-
getCovMatrix
ICovarianceMatrix getCovMatrix()getCovMatrix.
- Returns:
- a
ICovarianceMatrixobject
-
toString
String toString()toString.
-
getFml
double getFml()getFml.
- Returns:
- a double
-
getBicScore
double getBicScore()getBicScore.
- Returns:
- a double
-
getChiSquare
double getChiSquare()getChiSquare.
- Returns:
- a double
-
getPValue
double getPValue()getPValue.
- Returns:
- a double
-
getDataSet
DataSet getDataSet()getDataSet.
- Returns:
- a
DataSetobject
-
getNumFreeParams
int getNumFreeParams()getNumFreeParams.
- Returns:
- a int
-
getDof
int getDof()getDof.
- Returns:
- a int
-
getSampleSize
int getSampleSize()getSampleSize.
- Returns:
- a int
-
getMeasuredNodes
getMeasuredNodes.
- Returns:
- a
Listobject
-
getSampleCovar
Matrix getSampleCovar()getSampleCovar.
- Returns:
- a
Matrixobject
-
getEdgeCoef
Matrix getEdgeCoef()getEdgeCoef.
- Returns:
- a
Matrixobject
-
getErrorCovar
Matrix getErrorCovar()getErrorCovar.
- Returns:
- a
Matrixobject
-
getVariables
getVariables.
- Returns:
- a
Listobject
-
getEstSem
SemIm getEstSem()getEstSem.
- Returns:
- a
SemImobject
-