Basically given the CDF F of some distribution (say, Poisson), you can
generate random numbers from the Poisson distribution by doing:
u = rand # uniformely generated random number
y = Finv(u)
-Szymon
···
On Apr 12, 5:54 pm, Libra <libraramaANTIS...@gmail.com> wrote:
Hello,
I would extract some numbers according to a given
probability distribution (at least, Normal, Exponential,
Poisson and Bernoulli).
Do you know if a similar library already exists in Ruby? I
only found pseudo-random number generator.
If you are comfortable with R, you can use RSRuby (http://web.kuicr.kyoto-u.ac.jp/~alexg/rsruby/\) to generate numbers from any its distribution functions. For example, extracting 10 numbers from a normal distribution with mean 0:
The default R stats package has the following distributions built in and you can use any R library to add more (I couldn't see Bernoulli in this list, but maybe it has an alternative name?):
Beta(stats) The Beta Distribution
Binomial(stats) The Binomial Distribution
Cauchy(stats) The Cauchy Distribution
Chisquare(stats) The (non-central) Chi-Squared Distribution
Exponential(stats) The Exponential Distribution
FDist(stats) The F Distribution
GammaDist(stats) The Gamma Distribution
Geometric(stats) The Geometric Distribution
Hypergeometric(stats) The Hypergeometric Distribution
Logistic(stats) The Logistic Distribution
Lognormal(stats) The Log Normal Distribution
Multinomial(stats) The Multinomial Distribution
NegBinomial(stats) The Negative Binomial Distribution
Normal(stats) The Normal Distribution
Poisson(stats) The Poisson Distribution
SignRank(stats) Distribution of the Wilcoxon Signed Rank
Statistic
TDist(stats) The Student t Distribution
Tukey(stats) The Studentized Range Distribution
Uniform(stats) The Uniform Distribution
Weibull(stats) The Weibull Distribution
Wilcoxon(stats) Distribution of the Wilcoxon Rank Sum Statistic
ecdf(stats) Empirical Cumulative Distribution Function
survreg.distributions(survival)
Parametric Survival Distributions
Alex Gutteridge
Bioinformatics Center
Kyoto University
···
On 13 Apr 2007, at 06:55, Libra wrote:
Hello,
I would extract some numbers according to a given probability distribution (at least, Normal, Exponential, Poisson and Bernoulli).
Do you know if a similar library already exists in Ruby? I only found pseudo-random number generator.
From wikipedia : algorithm for generating pseudo poissons:
def poisson(lambda)
# init
l = Math.exp(-lambda)
k = 0
p = 1
while p >= l
k += 1
u = rand
p = p *u
end
return k -1
end
only returns ints, but hey, they center around lambda
gl.
-Roger
maw wrote:
Libra wrote:
Libra
R is great! maybe too great for your requirements
rb-gsl is easy
for example this will print you a nice gauss-shape graph
from rb-gsl-1.8.3/samples/histogram/gauss.rb
sigma, mean, height, = h.fit_gaussian
x = GSL::Vector.linspace(-MAX, MAX, 100)
y = height*Ran::gaussian_pdf(x-mean, sigma)
GSL::graph(h, [x, y], "-T X -C -g 3")
NICE!
cauchy exponential power poisson etc. also available
ruby - making maths easy
There is also RSRuby, a way of calling the R libraries, including their
probability distribution routines, from Ruby. I don't know anything
about the ones in GSL, but I know the algorithms in R are first-rate,
and I wouldn't code my own no matter *how* bored I got.