I am trying to create random numbers from a lognormal distribution using numpy / scipy.
The average value is set to 2000, and sigma is 800.
If I create my random valus using numpy.random.lognormal (mean = 2000, sigma = 800, size = 10000) everything I get is very high or the number inf.
Is there any way around this?
source share