jax.scipy.stats.norm.ppf
Warning
This page was created from a pull request (#9655).
jax.scipy.stats.norm.ppfΒΆ
- jax.scipy.stats.norm.ppf(q, loc=0, scale=1)[source]ΒΆ
Percent point function (inverse of cdf) at q of the given RV.
LAX-backend implementation of
ppf()
.Original docstring below.
- Parameters
q (array_like) β lower tail probability
arg1 (array_like) β The shape parameter(s) for the distribution (see docstring of the instance object for more information)
arg2 (array_like) β The shape parameter(s) for the distribution (see docstring of the instance object for more information)
arg3 (array_like) β The shape parameter(s) for the distribution (see docstring of the instance object for more information)
... (array_like) β The shape parameter(s) for the distribution (see docstring of the instance object for more information)
loc (array_like, optional) β location parameter (default=0)
scale (array_like, optional) β scale parameter (default=1)
- Returns
x β quantile corresponding to the lower tail probability q.
- Return type
array_like