160. PPF

160.1. PPF (Percent-Point Function)

Gives the value such that the probability of a random variable being less than or equal to is equal to a given probability

ppf.py
from scipy.stats import norm

p = 0.95
mu = 0
sigma = 1

x_value = norm.ppf(p, loc=mu, scale=sigma)