cumulative distribution function code example
Example 1: numpy cumulative distribution function normal
>>> vals = norm.ppf([0.001, 0.5, 0.999])
>>> np.allclose([0.001, 0.5, 0.999], norm.cdf(vals))
True
Example 2: cumulative percentile formula
c%=100*(cf/N)