Poisson Observation Model
Using the Poisson distribution to define an observation. This is effective for discrete count data.
In the above figure, the green dots represent occurences of plants in space (x,y point coordinates). These are "points" (in theory) and have no area, just a coordinate.
When we are counting these for a survey, we are surveying in a given area (Area 1 and Area 2). We are trying to determine the density (number of individuals per area). In the Poisson distribution, we call this parameter
The expected value for any site
In general:
n general, you can describe the Poisson distribution model as:
Where
Even though it is technically possible, considering the possibility of density being zero would cause some mathematical problems, so we will just say that
Since a regression in a linear model (
We call this a Link function. We are using it to link the density into "real space" e.g.
Since
The Poisson distribution is a probability statement for data, e.g. it has a Likelihood function to estimate the parameter
In R:
glm(Y ~ x1 + x2 + x3 + x4 + offset(log(TransectLength)), family=poissons, data=dat)