It depends on what you want. If you want the cdfdistribution to be inverse to the normal distribution, you want invgauss, "Inverse Gaussian continuous random variable.". To get cdf, you need to use a method invgauss.cdf. Adapted from the documentation:
from scipy.stats import invgauss
mu = 0.145462645553
vals = invgauss.ppf([0.001, 0.5, 0.999], mu)
res = invgauss.cdf(vals, mu)
On the other hand, if you want to invert the cdfnormal distribution, you need a method ppf normthat is the "Point function of percent (the inverse of cdf percentiles)."
source
share