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 ...
1
vote
1answer
319 views
Poisson simulation not working as expected?
I have a simple script to set up a Poisson distribution by constructing an array of "events" of probability = 0.1, and then counting the number of successes in each group of 10. It almost works, but ...
1
vote
1answer
221 views
Solving Sparse Linear Problem With Some Known Boundary Values
I'm trying to solve a Poisson equation on a rectangular domain which ends up being a linear problem like
Ax=b
but since I know the boundary conditions, there are nodes where I have the solution ...
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 ...
0
votes
3answers
247 views
Python: create a distribution from a list based on number of items that fall within certain ranges
I tagged this question with poisson as I am not sure if it will be helpful in this case.
I need to create a distribution (probably formatted as an image in the end) from a list of data.
For ...