Dear Chanelle,
to understand what a statistical model is, it is very helpful to write it down in algebra. In fact, I think that one cannot understand what a 'beta value' is without referring to the algebra of the model.
An occupancy model can be described as two linked logistic regression models, one for the true (and partially latent) presence/absence, denoted z, and the other for the observed (and false-negative-error-prone) detection/nondetection data, denoted y.
Let's assume you fit a model where a covariate X (say, vegetation density) affects both the latent state z and the observations y, through its effects on occupancy probability and detection probability (PS1). Indexing sites by i and repeated measurements (a.k.a.,
repeated visits, occasions, ...) by j, we can write this simple static occupancy model as follows:
# Submodel for latent state z, governed by occupancy prob. psi
z_i ~ Bernoulli(psi_i)
logit(psi_i) = beta0 + beta1 * x_i # Covariate model linking psi and X linearly on the link scale
# Submodel for observed data y, governed by detection prob. p
y_i,j ~ Bernoulli(z_i * p_i)
logit(p_i) = alpha0 + alpha1 * x_i # Covariate model linking p and X linearly on the link scale
When you fit this model, you get estimates of the four parameters beta0, beta1, alpha0 and alpha1. Two of them are an intercept and the other two are slope parameters that describe how a probability (on the logit = log(odds) = log(p / (1-p)) scale) depends
linearly on the covariate X.
If you only need to know whether X affects (in a correlative way !) occupancy or detection, then you can simply check whether it is significantly different from zero and look at its sign: if the sign is positive, then (say) occupancy probability is greater
for larger values of X than for smaller values, vice versa. This is often the main thing that we want to know.
However, due to the non-linear nature of the link function (i.e., the logit), it is near impossible to directly see what a change in x really does to psi without plotting predictions from the model.
Therefore, most of the times we will fill into the estimated regression equation (i.e., beta0 + beta1 * x_i) a large range of values for X and see what this produces in terms of occupancy probability psi. In unmarked we have predict() functions to do this.
These yield not only point estimates for these predictions, but also their standard errors and 95% confidence intervals. Almost always we will present the results from such a prediction exercise in a plot.
Hope that helps. But do learn to understand these models in algebra. Without that I can't see how one can use them in a responsible manner, to be honest.
Best regards --- Marc
(PS1) Note that it is one of the great assets of these kinds of hierarchical models, that we can estimate the effects of the same covariate on both parts of the model, i.e., here, on both occupancy and detection probability.
(PS2) Sometime we need a website for unmarked and/or HMecology and then put there a FAQ section. (A possibly improved version of) This post here could then go under the heading "what is a beta value ?"
Sent: Tuesday, July 30, 2024 17:16
To: unmarked <
unma...@googlegroups.com>
Subject: [unmarked] Interpretation of Beta-values