MCPcopy Index your code
hub / github.com/numpy/numpy / _quantile_unchecked

Function _quantile_unchecked

numpy/lib/_function_base_impl.py:4512–4531  ·  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,
                        weights=None,
                        weak_q=False)

Source from the content-addressed store, hash-verified

4510
4511
4512def _quantile_unchecked(a,
4513 q,
4514 axis=None,
4515 out=None,
4516 overwrite_input=False,
4517 method="linear",
4518 keepdims=False,
4519 weights=None,
4520 weak_q=False):
4521 """Assumes that q is in [0, 1], and is an ndarray"""
4522 return _ureduce(a,
4523 func=_quantile_ureduce_func,
4524 q=q,
4525 weights=weights,
4526 keepdims=keepdims,
4527 axis=axis,
4528 out=out,
4529 overwrite_input=overwrite_input,
4530 method=method,
4531 weak_q=weak_q)
4532
4533
4534def _quantile_is_valid(q):

Callers 2

percentileFunction · 0.85
quantileFunction · 0.85

Calls 1

_ureduceFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…