159. CDF
159.1. CDF (Cumulative Distribution Function)
Gives the probability that will take a value less than or equal to
- Categorical
- Continuous
cdf.py
from scipy.stats import norm
x = 1
mu = 0
sigma = 1
norm.cdf(x, loc=mu, scale=sigma)
Gives the probability that will take a value less than or equal to
from scipy.stats import norm
x = 1
mu = 0
sigma = 1
norm.cdf(x, loc=mu, scale=sigma)