Questions tagged [poisson]

Poisson is a discrete probability distribution in statistics that is popular in probabilistic modeling (including in Bayesian statistics) as well as business forecasting.

Poisson is a discrete probability distribution in statistics that is popular in probabilistic modeling (including in Bayesian statistics) as well as business forecasting. It is given by the formula for a random variable $X$:

$$P(X = k) = {{\lambda^{k}e^{-\lambda}}\over {k!}}$$

11 questions
3
votes
2 answers

Poisson distribution, Standard deviation, fitting line

Let's say I have system A, B, C, and D. Each system contains 10,000 numbers generated by Poisson distribution. The difference is the mean is different for different systems. I calculated the std dev for each distribution corresponding to each…
Surya
  • 43
  • 5
3
votes
1 answer

Applying Hypothesis testing on single sample and non-normal distribution

A basketball game is played for 30 minutes. A coach claims that his team's players commit, on average, no more than 10 fouls per game. Let µ represent the team's average number of fouls per game. Another coach thinks that these players create more…
Kapil
  • 131
  • 3
1
vote
0 answers

MLE for Poisson conditioned on multivariate Gaussian?

I am writing some Python code to fit 2D Gaussians to fluorescent emitters on a dark background to determine the subpixel-resolution (x, y) position of the fluorescent emitter. The crude, pixel-resolution (x, y) locations of the pixels are stored in…
1
vote
0 answers

Difficulty understanding the difference between Poisson, Quasi-Poisson, and Negative Binomial models

I will try to keep this short. As an assignment for my GLM course, we were given a dataset on the # of homicide victims a person knows, as well as the race of the person. The main idea is to answer the scientific question "Does race help explain how…
1
vote
0 answers

How to implement large-scale Poisson Regression in Python

I am trying to implement a Poisson Regression in Python to predict rates. I am dealing with a ton of data (too much to store in a DataFrame), which means that using the standard statsmodels.api GLM Poisson Regression won't work. I know that sklearn…
1
vote
1 answer

Poisson model with overdisperssion

I'm working with a dataset $X$ (of length $N$) of count data, which looks like: I developed a statistical model which can be improved, so I'm asking for any suggestions, for instance, differnet likelihoods or prior selection, different approach,…
ignatius
  • 1,696
  • 9
  • 22
1
vote
1 answer

Using scipy poisson, is it possible to calculate lambda if given random variable (k) and cumulative density function (p) when k is a large value?

I'm learning the Poisson distribution and am trying to "backward" calculate lambda if given a random value (k) and cumulative density function value (p). My k value is rather large, over 200, and I'm not even sure if using the poisson is a good idea…
zipline86
  • 399
  • 1
  • 5
  • 13
0
votes
0 answers

regression by grouping the dependent variable

I have a large dataset exploring the effects of the independent variables on the dependent variable using Poisson regression since the dependent variable is a count variable. However, the range of the dependent variable is too large. Hence, I was…
tempx
  • 121
  • 3
0
votes
0 answers

What model to use for binary independent variable and count dependent variable

I have two datasets in long formats. Dataset #1: The columns are weeks (202301, 202302, ..., 202352). The indices are item ID's. The values are sales units (count). Dataset #2: The columns are weeks (202301, 202302, ..., 202352). The indices are…
0
votes
1 answer

How can I obtain the mean of a Poisson distribution given the first improbable point of the distribution?

I generated a Poisson distribution with mean equal to 3 and 10000 samples by using np.random.poisson(3,10000). The plot is the following: from this plot I see that given the mean equal to 3, a point like 12 is very unlikely to fall into the…