scipy.stats.mstats.
hdquantiles_sd#
- scipy.stats.mstats.hdquantiles_sd(data, prob=(0.25, 0.5, 0.75), axis=None)[source]#
The standard error of the Harrell-Davis quantile estimates by jackknife.
Deprecated since version 2.0.0:
scipy.stats.mstats.hdquantiles_sdis deprecated as of SciPy 2.0.0 and will be removed, along with thescipy.stats.mstatsnamespace, in SciPy 2.4.0. SciPy offers no replacement for this function.- Parameters:
- dataarray_like
Data array.
- probsequence, optional
Sequence of quantiles to compute.
- axisint, optional
Axis along which to compute the quantiles. If None, use a flattened array.
- Returns:
- hdquantiles_sdMaskedArray
Standard error of the Harrell-Davis quantile estimates.
See also