Uses of Enum
org.apache.commons.math3.stat.descriptive.moment.SemiVariance.Direction
Packages that use SemiVariance.Direction
Package
Description
Summary statistics based on moments.
-
Uses of SemiVariance.Direction in org.apache.commons.math3.stat.descriptive.moment
Fields in org.apache.commons.math3.stat.descriptive.moment declared as SemiVariance.DirectionModifier and TypeFieldDescriptionstatic final SemiVariance.Direction
SemiVariance.DOWNSIDE_VARIANCE
The DOWNSIDE Direction is used to specify that the observations below the cutoff point will be used to calculate SemiVariancestatic final SemiVariance.Direction
SemiVariance.UPSIDE_VARIANCE
The UPSIDE Direction is used to specify that the observations above the cutoff point will be used to calculate SemiVariance.Methods in org.apache.commons.math3.stat.descriptive.moment that return SemiVariance.DirectionModifier and TypeMethodDescriptionSemiVariance.getVarianceDirection()
Returns the varianceDirection property.static SemiVariance.Direction
Returns the enum constant of this type with the specified name.static SemiVariance.Direction[]
SemiVariance.Direction.values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.commons.math3.stat.descriptive.moment with parameters of type SemiVariance.DirectionModifier and TypeMethodDescriptiondouble
SemiVariance.evaluate
(double[] values, double cutoff, SemiVariance.Direction direction) Returns theSemiVariance
of the designated values against the cutoff in the given direction, using the current value of the biasCorrection instance property.double
SemiVariance.evaluate
(double[] values, double cutoff, SemiVariance.Direction direction, boolean corrected, int start, int length) Returns theSemiVariance
of the designated values against the cutoff in the given direction with the provided bias correction.double
SemiVariance.evaluate
(double[] values, SemiVariance.Direction direction) This method calculatesSemiVariance
for the entire array against the mean, using the current value of the biasCorrection instance property.void
SemiVariance.setVarianceDirection
(SemiVariance.Direction varianceDirection) Sets the variance directionConstructors in org.apache.commons.math3.stat.descriptive.moment with parameters of type SemiVariance.DirectionModifierConstructorDescriptionSemiVariance
(boolean corrected, SemiVariance.Direction direction) Constructs a SemiVariance with the specifiedisBiasCorrected
property and the specifiedDirection
property.SemiVariance
(SemiVariance.Direction direction) Constructs a SemiVariance with the specifiedDirection
property and default (true)biasCorrected
property