159. CDF

159.1. CDF (Cumulative Distribution Function)

Gives the probability that will take a value less than or equal to

  1. Categorical
  1. Continuous
cdf.py
from scipy.stats import norm

x = 1
mu = 0
sigma = 1

norm.cdf(x, loc=mu, scale=sigma)