(n, quantiles)
| 4689 | |
| 4690 | |
| 4691 | def _inverted_cdf(n, quantiles): |
| 4692 | gamma_fun = lambda gamma, _: (gamma == 0) |
| 4693 | return _discret_interpolation_to_boundaries((n * quantiles) - 1, |
| 4694 | gamma_fun) |
| 4695 | |
| 4696 | |
| 4697 | def _quantile_ureduce_func( |
no test coverage detected