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)
| 4510 | |
| 4511 | |
| 4512 | def _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 | |
| 4534 | def _quantile_is_valid(q): |
no test coverage detected
searching dependent graphs…