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 number of individuals divided by area.

λ1=no. individuals in 1area 1=105m2λ2=no. individuals in 2area 2=215m2

The expected value for any site i is E[yi]=areaiλi - area times expected density.

In general:

n general, you can describe the Poisson distribution model as:

yi∼Poisson(Ei×λi)

Where Ei denotes sampling effort for this site (for example, area sampled) and the density λi. We call this "offset" and this is how it is used in R. In the upcoming example let's consider Ei=1 so that E[yi]=λi (expected value of yi is just λi).

Even though it is technically possible, considering the possibility of density being zero would cause some mathematical problems, so we will just say that λ is limited to positive non-zero numbers.

Since a regression in a linear model (xiβ) can include negative numbers and zero (−∞,∞), we need to transform these values so they also have this domain in order for the regression to make sense. So:

log⁡(E[yi])=log⁡(λi)=xiβ

We call this a Link function. We are using it to link the density into "real space" e.g. (−∞,∞). The link function is denoted by g(λi)

Since log⁡λi=xiβ, and therefore λi=exiβ, we can rewrite our model from earlier like:

yi∼Poisson(exiβ)

The Poisson distribution is a probability statement for data, e.g. it has a Likelihood function to estimate the parameter β. This is how the generalized linear models works.

In R:

glm(Y ~ x1 + x2 + x3 + x4 + offset(log(TransectLength)), family=poissons, data=dat)