Log-Uniform Distribution#
This random variable is log-uniform. That is, if loguniform(10**-1, 10**1)
is specified, 0.1
, 1
, 10
are all equally likely.
There are two shape parameters and the support is .
Implementation: scipy.stats.loguniform
.