Tagged Questions
9
votes
3answers
4k views
calculate poisson probability percentage in python
When you use the POISSON function in Excel (or in OpenOffice Calc), it takes two arguments:
an integer
an 'average' number
and returns a float.
In python (i tried RandomArray and NumPy) it returns ...
3
votes
2answers
321 views
Generate Poisson process using R
I want to generate a process where in every step there is a realisation of a Poisson random variable, this realisation should be saved and then it should be realize the next Poisson random variable ...
1
vote
8answers
2k views
Generating a gaussian distribution with only positive numbers
Is there any way to randomly generate a set of positive numbers such that they have a desired mean and standard deviation?
I have an algorithm to generate numbers with a gaussian distribution, but ...
0
votes
1answer
58 views
Is random.expovariate equivalent to a Poisson Process
I read somewhere that the python library function random.expovariate produces intervals equivalent to Poisson Process events.
Is that really the case or should I impose some other function on the ...