{"id":525,"date":"2017-01-07T12:48:17","date_gmt":"2017-01-07T12:48:17","guid":{"rendered":"http:\/\/muthu.co\/?p=525"},"modified":"2021-05-24T03:50:19","modified_gmt":"2021-05-24T03:50:19","slug":"poisson-distribution-with-python","status":"publish","type":"post","link":"http:\/\/write.muthu.co\/poisson-distribution-with-python\/","title":{"rendered":"Poisson distribution with Python"},"content":{"rendered":"\n
A Poisson distribution is the probability distribution of independent occurrences in an interval. Poisson distribution is used for count-based distributions where these events happen with a known average rate and independently of the time since the last event. For example, If the average number of cars that cross a particular street in a day is 25, then you can find the probability of 28 cars passing the street using the poisson formula given by.<\/p>\n\n\n\n
e<\/em> is the base of natural logarithms (2.7183) At any day we can see 0,1,2,3,….25.. 30.. numbers on cars on the street with an average of around 25 cars. So to find 28 cars we would have to calculate<\/p>\n\n\n\n
\u03bc is the mean number of occurrences (25 in this case)
x is the number of occurrences in question (28 in this case)<\/p>\n\n\n\n