I have 10 data collectors contributing to a multi-species occupancy model, and I’ve included data collector as a random intercept in the detection model. One data collector did not conduct repeat surveys at each site (all replicates are NA after the first visit), so there is effectively no within-site replication to inform detectability for that observer. My expectation was that the detection intercepts for this data collector would shrink strongly toward the hypermean, but that is not what I see empirically. I extracted species × data collector random effects from Occ_mod$alpha.star.samples using the function below:
# Function to create random effect table
create.re.tbl <- function(re.samples){
Intercept <- colMeans(re.samples)
Group <- str_split_i(names(Intercept), "-", 1)
Id <- str_split_i(names(Intercept), "-", 2)
Species <- str_split_i(names(Intercept), "-", 3)
# Join together as tibble
tibble(Group, Id, Species, Intercept)
}
Detection_re <- create.re.tbl(Occ_mod$alpha.star.samples)
This produces a tibble with 1,000 rows (100 species × 10 data collectors). When I plot these values, the data collector with no replicate surveys (collector_team_1) shows a clear shift to lower detectability (peak left of zero), rather than shrinking toward the global mean. In contrast, summary(Occ_mod) reports a global mean of 0.144 (SD = 0.022).
A few questions:
How should I expect the detection model to behave for a data collector with no replicate surveys? Is a systematic deviation (rather than shrinkage to the mean) expected in this case?
Would you recommend excluding this data collector? They also used a different protocol (25 m vs 50 m radius, and no survey duration recorded).
The global mean and standard deviation (0.144, 0.022) from summary(Occ_mod) don't match with the plot produced by my post-hoc attempt using Occ_mod$alpha.star.samples. I assume this is because the global mean reported by summary(Occ_mod) is informed by differing amounts of data from each species × data collector (i.e. partial pooling), whereas my post-hoc summary treats all species × data collectors equally. Am I on the right track here?
I also see very narrow peaks around ~0 for some collectors (e.g., 3, 9, 10). Do you have any thoughts what might be causing this?
Thanks very much for any thoughts,
Aaron
--
You received this message because you are subscribed to the Google Groups "spOccupancy and spAbundance users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to spocc-spabund-u...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/spocc-spabund-users/306ca9a1-21ce-44ed-a576-8d5eca2c5535n%40googlegroups.com.
%2009.57.17.png?part=0.1&view=1)