List of Observation Models
Gaussian Observation Model
- Used for normally-distributed continuous data like temperature (which ranges from zero to infinity)
- Can also be used for positive continuous data like length and weight if the values are large enough that the probability of
is negligible - If the values are very small, and your model has some probability of a zero or negative weight/length, then this is a problem
Parameter range
Log-Gaussian
Log-Gaussian observation model
- Gaussian Observation Model with a log transform (link function):
- works better for continuous postitive data that is close to zero, since it prevents the model from predicting any zero vales in the resposnse
- For example distance or biomass data which is often close to zero
Parameter range
Same as Gaussian, but
Poisson observation model
- Used for discrete count data with a density (
) - Since it uses density, this works for different transect lenghts (representing sampling effort)
- Use a
as a link function back to "real space" - Examples of data - counts of individuals, numbers of incidents, species richness
Parameter Range
(postitive integers)
Negative-Binomial
Negative-Binomial Observation Model
- Basically a combination of Poisson Observation Model with Random Effects. The random effect here is called the "overdispersion parameter"
- It's used when you have data where the variance exceeds the mean - e.g. data with lots of zeroes that bring down the mean
- The overdispersion parameter accounts for this
Binomial observation model
- Modeling the number of successes based on the sample size and probability of success
- Used for:
- number of successes in
experiments - Number of sampled animals that test positive for a disease
- number of successes in
- Uses a logit function as link
- Note that offset isn't easily applicable to Binomial or Bernouilli models (e.g. sampling effort) - best thing to do is to add a covariate in your GLM for this
Parameter range
- The number of successes can't exceed the number of trials
Bernoulli observation model
- Like a binomial model where
- Used for binary data (
) based on a probability ( ) of success - for example: - the probability of presence/absense of species in sampling sites
- The probability of success/failure in a single experiment
- Uses a logit function as a link:
Parameter range
Hurdle Observation Models
- A family of models that really use two observation models:
- One model if
- A different model if
- Depends on the second model used - can be any other kindof model
- One model if
- This is another wat to deal with zero-inflated data
- For example, if you are measuring biomass when there is a chance that biomass will be zero, you can use a Hurdle log-Gaussian Model: