Skip to content
Advertisement

Random numbers, small decimals

I’m working with random numbers in python, the problem is the following; I have a variable, we can call it “x”, I want it to take values between [10^-6,10^-1], then I have the following line

JavaScript

But it is only generating numbers like

JavaScript

It never generates numbers like

JavaScript

How can I generate the second type of random numbers? Generating random numbers of magnitudes 1e-1,1e-2,1e-3,1e-4,1e-5,1e-6?

Advertisement

Answer

It appears that you are looking for logarithmically distributed data, where the log of the statistic is uniformly distributed. Knowing this you can construct these numbers easily:

JavaScript

A histogram of x looks like this:

histogram of x

while a histogram of the log of x (which is equal to the exponent by construction) looks nice and uniform:

enter image description here

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement