Package edu.cmu.tetrad.search.utils
Enum Class BpcTestType
- All Implemented Interfaces:
TetradSerializable
,Serializable
,Comparable<BpcTestType>
,Constable
Enumerates the test types for BuildPureClusters, and Purify.
- Version:
- $Id: $Id
- Author:
- josephramsey
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDiscrete.Discrete LRT.Discrete Variational.GAP test, for FTFC.Gaussian Factor.This one will work and does a good job for medium sized models.This is very slow.Even slower.This will work and does a good job for small models, no more than 4 latents.This option doesn't do any purify.Population test.SAG test, for FTFC.Tetrad-based test.Bollen Tetrad test.Delta Tetrad test.Wishart Tetrad test. -
Method Summary
Modifier and TypeMethodDescriptionstatic BpcTestType[]
Returns the test type descriptions for the Purify algorithm.static BpcTestType[]
Returns the test type descriptions for the BuildPureClusters algorithm.static BpcTestType
Returns the serializable instance of the test type.static BpcTestType
Returns the enum constant of this class with the specified name.static BpcTestType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
GAUSSIAN_PVALUE
This one will work and does a good job for medium sized models. -
GAUSSIAN_SCORE_MARKS
This will work and does a good job for small models, no more than 4 latents. -
GAUSSIAN_SCORE
This is very slow. -
GAUSSIAN_SCORE_ITERATE
Even slower. -
NONE
This option doesn't do any purify. -
DISCRETE_LRT
Discrete LRT. -
DISCRETE_VARIATIONAL
Discrete Variational. -
GAUSSIAN_FACTOR
Gaussian Factor. -
DISCRETE
Discrete. -
TETRAD_BOLLEN
Bollen Tetrad test. -
TETRAD_DELTA
Delta Tetrad test. -
TETRAD_WISHART
Wishart Tetrad test. -
TETRAD_BASED
Tetrad-based test. -
POPULATION
Population test. -
SAG
SAG test, for FTFC. -
GAP
GAP test, for FTFC.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
serializableInstance
Returns the serializable instance of the test type.- Returns:
- the serializable instance of the test type.
-
getPurifyTestDescriptions
Returns the test type descriptions for the Purify algorithm.- Returns:
- the test type descriptions for the Purify algorithm.
-
getTestDescriptions
Returns the test type descriptions for the BuildPureClusters algorithm.- Returns:
- the test type descriptions for the BuildPureClusters algorithm.
-