Advertisement
Guest User

Inverse Norm

a guest
Oct 22nd, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. from scipy.stats import norm
  2. import numpy as np
  3. import matplotlib.pyplot as plt
  4.  
  5. mu = 0.5
  6. sigma = 0.15
  7.  
  8. X = np.linspace(0, 1, 100)
  9. plt.plot(X, norm.ppf(X, loc=mu, scale=sigma))
  10. plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement