MCPcopy Create free account
hub / github.com/numpy/numpy / _quantile_unchecked

Function _quantile_unchecked

numpy/lib/function_base.py:4547–4562  ·  view source on GitHub ↗

Assumes that q is in [0, 1], and is an ndarray

(a,
                        q,
                        axis=None,
                        out=None,
                        overwrite_input=False,
                        method="linear",
                        keepdims=False)

Source from the content-addressed store, hash-verified

4545
4546
4547def _quantile_unchecked(a,
4548 q,
4549 axis=None,
4550 out=None,
4551 overwrite_input=False,
4552 method="linear",
4553 keepdims=False):
4554 """Assumes that q is in [0, 1], and is an ndarray"""
4555 return _ureduce(a,
4556 func=_quantile_ureduce_func,
4557 q=q,
4558 keepdims=keepdims,
4559 axis=axis,
4560 out=out,
4561 overwrite_input=overwrite_input,
4562 method=method)
4563
4564
4565def _quantile_is_valid(q):

Callers 2

percentileFunction · 0.85
quantileFunction · 0.85

Calls 1

_ureduceFunction · 0.85

Tested by

no test coverage detected