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 TypeMethodDescriptiondouble
getBicScore.double
getChiSquare.getCovMatrix.getDataSet.int
getDof()
getDof.getEdgeCoef.getErrorCovar.getEstSem.double
getFml()
getFml.getMeasuredNodes.int
getNumFreeParams.double
getPValue.getSampleCovar.int
getSampleSize.getVariables.double
score.toString()
toString.
-
Method Details
-
score
score.
- Parameters:
dag
- aGraph
object- Returns:
- a double
-
getCovMatrix
ICovarianceMatrix getCovMatrix()getCovMatrix.
- Returns:
- a
ICovarianceMatrix
object
-
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
DataSet
object
-
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
List
object
-
getSampleCovar
Matrix getSampleCovar()getSampleCovar.
- Returns:
- a
Matrix
object
-
getEdgeCoef
Matrix getEdgeCoef()getEdgeCoef.
- Returns:
- a
Matrix
object
-
getErrorCovar
Matrix getErrorCovar()getErrorCovar.
- Returns:
- a
Matrix
object
-
getVariables
getVariables.
- Returns:
- a
List
object
-
getEstSem
SemIm getEstSem()getEstSem.
- Returns:
- a
SemIm
object
-