sdmTMB standard error and CV of index values #175
-
Question by email:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
sdmTMB uses TMB's generalized delta method (see Those are available in the output of |
Beta Was this translation helpful? Give feedback.
sdmTMB uses TMB's generalized delta method (see
?TMB::sdreport
) on the area-weighted sum of abundance/biomass to calculate the SE. The upper and lower 95% CIs are then +/- 1.96 the SE from log abundance or biomass followed byexp()
. Where 1.96 is fromqnorm(1 - (1 - 0.95)/2)
.Those are available in the output of
get_index()
in these
column. Those are on log abundance. Assuming a lognormal variable, which we are, you can get a CV as:sqrt(exp(se^2) - 1)
. For small values, the SE of the log variable and the CV will be very similar.