public static enum Quantile.QuantileType extends Enum<Quantile.QuantileType>
Enum Constant and Description |
---|
APPROXIMATELY_MEDIAN_UNBIASED
default: the resulting quantile estimates are approximately median-unbiased
regardless of the distribution of the sample
|
APPROXIMATELY_UNBIASED_IF_DATA_IS_NORMAL
the resulting quantile estimates are approximately unbiased
for the expected order statistics if the sample is normally distributed
|
INVERSE_OF_EMPIRICAL_CDF
the inverse of empirical distribution function
|
INVERSE_OF_EMPIRICAL_CDF_WITH_AVERAGING_AT_DISCONTINUITIES
the inverse of empirical distribution function with averaging at discontinuities
|
LINEAR_INTERPOLATION_OF_EMPIRICAL_CDF
the linear interpolation of the empirical cdf
|
MIDWAY_THROUGH_STEPS_OF_EMPIRICAL_CDF
a piecewise linear function where
the knots are the values midway through the steps of the empirical cdf
|
MINITAB_SPSS
the definition in Minitab and SPSS
|
NEAREST_EVEN_ORDER_STATISTICS
the nearest even order statistic as in SAS
|
S
the definition in S
|
Modifier and Type | Method and Description |
---|---|
static Quantile.QuantileType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Quantile.QuantileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Quantile.QuantileType INVERSE_OF_EMPIRICAL_CDF
public static final Quantile.QuantileType INVERSE_OF_EMPIRICAL_CDF_WITH_AVERAGING_AT_DISCONTINUITIES
public static final Quantile.QuantileType NEAREST_EVEN_ORDER_STATISTICS
public static final Quantile.QuantileType LINEAR_INTERPOLATION_OF_EMPIRICAL_CDF
public static final Quantile.QuantileType MIDWAY_THROUGH_STEPS_OF_EMPIRICAL_CDF
public static final Quantile.QuantileType MINITAB_SPSS
public static final Quantile.QuantileType S
public static final Quantile.QuantileType APPROXIMATELY_MEDIAN_UNBIASED
public static final Quantile.QuantileType APPROXIMATELY_UNBIASED_IF_DATA_IS_NORMAL
public static Quantile.QuantileType[] values()
for (Quantile.QuantileType c : Quantile.QuantileType.values()) System.out.println(c);
public static Quantile.QuantileType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2010-2020 NM FinTech Ltd.. All Rights Reserved.