Package edu.cmu.tetrad.search
Enum Class Cdnod.ColliderOrientationStyle
- All Implemented Interfaces:
Serializable,Comparable<Cdnod.ColliderOrientationStyle>,Constable
- Enclosing class:
Cdnod
Enumeration representing different strategies for orienting colliders in causal discovery.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionApply a conservative approach to collider orientation, favoring ambiguity when evidence for orientation is inconclusive.Decide collider orientation by comparing the maximum p-value margins between two sides (includes given variable vs excludes given variable).Orient based on separating sets derived from the data. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static Cdnod.ColliderOrientationStyle[]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
-
SEPSETS
Orient based on separating sets derived from the data. Each pair of variables is analyzed to determine whether a separating set exists to justify collider orientation. -
CONSERVATIVE
Apply a conservative approach to collider orientation, favoring ambiguity when evidence for orientation is inconclusive. This approach ensures orientational robustness under stricter constraints. -
MAX_P
Decide collider orientation by comparing the maximum p-value margins between two sides (includes given variable vs excludes given variable). The decision is made based on which side has a strictly larger best p-value over a specified threshold margin.
-
-
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
-