Uses of Class
org.hipparchus.stat.descriptive.moment.SemiVariance.Direction
-
Packages that use SemiVariance.Direction Package Description org.hipparchus.stat.descriptive.moment Summary statistics based on moments. -
-
Uses of SemiVariance.Direction in org.hipparchus.stat.descriptive.moment
Fields in org.hipparchus.stat.descriptive.moment declared as SemiVariance.Direction Modifier and Type Field Description static SemiVariance.DirectionSemiVariance. DOWNSIDE_VARIANCEThe DOWNSIDE Direction is used to specify that the observations below the cutoff point will be used to calculate SemiVariancestatic SemiVariance.DirectionSemiVariance. UPSIDE_VARIANCEThe UPSIDE Direction is used to specify that the observations above the cutoff point will be used to calculate SemiVariance.Methods in org.hipparchus.stat.descriptive.moment that return SemiVariance.Direction Modifier and Type Method Description SemiVariance.DirectionSemiVariance. getVarianceDirection()Returns the varianceDirection property.static SemiVariance.DirectionSemiVariance.Direction. valueOf(String name)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.hipparchus.stat.descriptive.moment with parameters of type SemiVariance.Direction Modifier and Type Method Description doubleSemiVariance. evaluate(double[] values, double cutoff, SemiVariance.Direction direction)Returns theSemiVarianceof the designated values against the cutoff in the given direction, using the current value of the biasCorrection instance property.doubleSemiVariance. evaluate(double[] values, double cutoff, SemiVariance.Direction direction, boolean corrected, int start, int length)Returns theSemiVarianceof the designated values against the cutoff in the given direction with the provided bias correction.doubleSemiVariance. evaluate(double[] values, SemiVariance.Direction direction)This method calculatesSemiVariancefor the entire array against the mean, using the current value of the biasCorrection instance property.SemiVarianceSemiVariance. withVarianceDirection(SemiVariance.Direction direction)Returns a copy of this instance with the given direction setting.Constructors in org.hipparchus.stat.descriptive.moment with parameters of type SemiVariance.Direction Constructor Description SemiVariance(boolean corrected, SemiVariance.Direction direction)Constructs a SemiVariance with the specifiedisBiasCorrectedproperty and the specifiedDirectionproperty.SemiVariance(SemiVariance.Direction direction)Constructs a SemiVariance with the specifiedDirectionproperty and default (true)biasCorrectedproperty
-