Hello,
I am currently working on some data to develop abundance estimates for penguins and seals. We have data taken from ship surveys and aerial surveys.
I have fitted two detection functions, one for each transect type, and want to combine these into one overall density and abundance estimate. I have used dht2 to specifiy the dataframes with observations and transect information, with ddf_id specifiying which df applies. There is no stratification necessary. However, when I run it, the Effort and therefore, Covered Area double. The number of sightings remains unchanged, and sothe outcomes are roughly half of what I expect. I have checked my dataframes for repeat observations and that the correct lengths are provided to dht2.
Does anyone know where I may be going wrong?
Any advice would be very welcome.
Thank you,
Emilija Reuter
> sum(cbe.effort$Effort)
[1] 9544.67
cbe.geo.Strat <- data.frame(Region.Label = 'All' ,Area = 1500000)
cbe.dht <- dht2(
observations = cbe.obs,
transects = cbe.effort,
geo_strat = cbe.geo.Strat,
ddf = cbe.obs.ddf,
binomial_var = FALSE,
strat_formula = ~1)
CoveredArea: 30542.94 Effort: 19089.34