Package edu.cmu.tetrad.sem
Class SemEstimator
java.lang.Object
edu.cmu.tetrad.sem.SemEstimator
- All Implemented Interfaces:
- TetradSerializable,- Serializable
Estimates a SemIm given a CovarianceMatrix and a SemPm. (A DataSet may be
 substituted for the CovarianceMatrix.)
- Author:
- Frank Wimberly, Ricardo Silva, Don Crimbchin, Joseph Ramsey
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionSemEstimator(DataSet dataSet, SemPm semPm) Constructs a Sem Estimator that does default estimation.SemEstimator(DataSet dataSet, SemPm semPm, SemOptimizer semOptimizer) Constructs a new SemEstimator that uses the specified optimizer.SemEstimator(ICovarianceMatrix covMatrix, SemPm semPm) Constructs a SEM estimator that does default estimation.SemEstimator(ICovarianceMatrix covMatrix, SemPm semPm, SemOptimizer semOptimizer) Constructs a new SemEstimator that uses the specified optimizer.
- 
Method SummaryModifier and TypeMethodDescriptionestimate()Runs the estimator on the data and SemPm passed in through the constructor.getSemPm()static SemEstimatorGenerates a simple exemplar of this class to test serialization.voidsetNumRestarts(int numRestarts) voidsetScoreType(ScoreType scoreType) voidsetSemOptimizer(SemOptimizer semOptimizer) toString()
- 
Constructor Details- 
SemEstimatorConstructs a Sem Estimator that does default estimation.- Parameters:
- dataSet- a DataSet, all of whose variables are contained in the given SemPm. (They are identified by name.)
- semPm- a SemPm specifying the graph and parameterization for the model.
 
- 
SemEstimatorConstructs a SEM estimator that does default estimation.- Parameters:
- covMatrix- a CovarianceMatrix, all of whose variables are contained in the given SemPm. (They are identified by name.)
- semPm- a SemPm specifying the graph and parameterization for the model.
 
- 
SemEstimatorConstructs a new SemEstimator that uses the specified optimizer.- Parameters:
- dataSet- a DataSet, all of whose variables are contained in the given SemPm. (They are identified by name.)
- semPm- a SemPm specifying the graph and parameterization for the model.
- semOptimizer- the optimizer that optimizes the Sem.
 
- 
SemEstimatorConstructs a new SemEstimator that uses the specified optimizer.- Parameters:
- covMatrix- a covariance matrix, all of whose variables are contained in the given SemPm. (They are identified by name.)
- semPm- a SemPm specifying the graph and parameterization for the model.
- semOptimizer- the optimizer that optimizes the Sem.
 
 
- 
- 
Method Details- 
serializableInstanceGenerates a simple exemplar of this class to test serialization.
- 
estimateRuns the estimator on the data and SemPm passed in through the constructor.
- 
getEstimatedSem- Returns:
- the estimated SemIm. If the estimatemethod has not yet been called,nullis returned.
 
- 
getDataSet
- 
getSemPm
- 
getCovMatrix
- 
toString
- 
setSemOptimizer
- 
setScoreType
- 
setNumRestartspublic void setNumRestarts(int numRestarts) 
 
-