Interface Scorer

All Known Implementing Classes:
DagScorer

public interface Scorer
Interface for a class that represents a scoring of a SEM model.
  • Method Details

    • score

      double score(Graph dag)
    • getCovMatrix

      ICovarianceMatrix getCovMatrix()
    • toString

      String toString()
      Overrides:
      toString in class Object
    • getFml

      double getFml()
    • getBicScore

      double getBicScore()
    • getChiSquare

      double getChiSquare()
    • getPValue

      double getPValue()
    • getDataSet

      DataSet getDataSet()
    • getNumFreeParams

      int getNumFreeParams()
    • getDof

      int getDof()
    • getSampleSize

      int getSampleSize()
    • getMeasuredNodes

      List<Node> getMeasuredNodes()
    • getSampleCovar

      Matrix getSampleCovar()
    • getEdgeCoef

      Matrix getEdgeCoef()
    • getErrorCovar

      Matrix getErrorCovar()
    • getVariables

      List<Node> getVariables()
    • getEstSem

      SemIm getEstSem()