numpy.random.wald() in Python
With the help of numpy.random.wald() method, we can get the random samples from Wald or Inverse Gaussian distribution and return the random samples as numpy array by using this method. Syntax : numpy.random.wald(mean, scale, size=None) Return : Return the random samples as numpy array. Example #1 :