scoreatpercentile(a, per, limit=(), interpolation_method='fraction', axis=None)
For example, the score at :None:None:`per=50`
is the median. If the desired quantile lies between two data points, we interpolate between them, according to the value of :None:None:`interpolation`
. If the parameter :None:None:`limit`
is provided, it should be a tuple (lower, upper) of two values.
This function will become obsolete in the future. For NumPy 1.9 and higher, numpy.percentile
provides all the functionality that scoreatpercentile
provides. And it's significantly faster. Therefore it's recommended to use numpy.percentile
for users that have numpy >= 1.9.
A 1-D array of values from which to extract score.
Percentile(s) at which to extract score. Values should be in range [0,100].
Tuple of two scalars, the lower and upper limits within which to compute the percentile. Values of a
outside this (closed) interval will be ignored.
Specifies the interpolation method to use, when the desired quantile lies between two data points i
and :None:None:`j`
The following options are available (default is 'fraction'):
'fraction':
i + (j - i) * fraction
wherefraction
is the fractional part of the index surrounded byi
andj
'lower':
i
'higher':
j
Axis along which the percentiles are computed. Default is None. If None, compute over the whole array a
.
Score at percentile(s).
Calculate the score at a given percentile of the input sequence.
>>> from scipy import statsSee :
... a = np.arange(100)
... stats.scoreatpercentile(a, 50) 49.5
The following pages refer to to this document either explicitly or contain code examples using this.
scipy.linalg._decomp_svd.svdvals
scipy.stats._stats_py.scoreatpercentile
scipy.sparse._construct.random
scipy.interpolate._rbfinterp.RBFInterpolator
scipy.sparse.linalg._eigen._svds.svds
Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.
Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)
SVG is more flexible but power hungry; and does not scale well to 50 + nodes.
All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them