I think I've interpreted your situation, but want to double check: when you say you want an estimate "per site", I take that to mean you want an estimate for each station at which you gathered data; i.e. site=point, correct?
It is a bit difficult to diagnose what is happening without plots or output, but I have two potential suspects for your problem namely positive bias from your hazard rate model with group size covariate:
You don't provide information regarding goodness of fit of the models; do they fit? What is the range of observed group sizes; what does a plot of observed group size (y-axis) versus detection distance (x-axis) look like—this
is visual assessment for effect of group size on detectability. What is the result of a hazard rate model without the size covariate (might help determine whether difficulties are with the covariate or with inherent nature of hazard rate key function).
I am trying to obtain density estimates for a large number of point survey sites for certain bird species. My hope is to obtain one density estimate per site in order to compare the amount of expected birds between each site. Each site has 1 or 2 visits,
where point counts were performed with distance, size, and covariates noted.
I am using the ds() function to obtain a distance model using CDS and MCDS loops. I also created a null model with no adjustments or covariates. Region.Label is the identifier for the individual survey points. I also included survey points with 0 observations
of the species of interest and an Effort column that reflects the amount of visits each point received (1 or 2). The area column is set to 0, since I'm looking at density rather than abundance for now.
The best model by far, based on AIC, is a hazard-rate model using group size as the sole covariate (AIC = 1771.35). However, when looking at the density estimates I realized that they are extremely high compared to literature values (by at least one order of
magnitude).
Furthermore, I realized that the null model with no adjustments or covariates had much more accurate density estimates, even though it is a worse model based on AIC and goodness-of-fit (AIC = 2004.737).
I'm wondering if someone could give me some guidance as to why the estimates are so inflated and if there is anything I can do to fix this. The fact that they're so different makes me think I'm doing something wrong when introducing the covariates but
I'm not seeing where.
Here are the two ds() models I am using:
null:
m.null.hn <- ds(data = d,
formula = ~1,
transect = "point",
key = "hn",
order = 0,
er_var = "P3",
truncation = "15%",
convert_units = conversion.factor)
covariate model:
mbest <- ds(data = d,
formula = ~as.factor(size.factor),
transect = "point",
key = "hr",
order = 0,
er_var = "P3",
truncation = "15%,
convert_units = conversion.factor)
conversion.factor = 0.01 (since distance is measured in meters and I want density by hectare)
--
You received this message because you are subscribed to the Google Groups "distance-sampling" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
distance-sampl...@googlegroups.com.
To view this discussion visit
https://groups.google.com/d/msgid/distance-sampling/e47cda28-9eee-4c98-94d6-2b64cc0b7a03n%40googlegroups.com.