(array, q, axis=None, **kwargs)
| 484 | |
| 485 | |
| 486 | def quantile(array, q, axis=None, **kwargs): |
| 487 | xp = get_array_namespace(array) |
| 488 | return xp.quantile(array, q, axis=axis, **kwargs) |
| 489 | |
| 490 | |
| 491 | @contextlib.contextmanager |
nothing calls this directly
no test coverage detected
searching dependent graphs…