
Compare multiple survey design estimates side by side
Source:R/compare-designs.R
compare_designs.RdValue
A creel_design_comparison object – a data frame with columns:
designDesign name (from
names(designs)).estimatePoint estimate.
seStandard error.
rseRelative standard error (
se / |estimate|).ci_lowerLower confidence interval bound.
ci_upperUpper confidence interval bound.
ci_widthWidth of the confidence interval.
nSample size (if present in the estimates frame).
Group columns are retained when all designs share the same by-variable structure.
Details
Takes a named list of creel_estimates objects (from different survey
designs or methods), extracts key precision metrics from each, and returns
a tidy comparison tibble. An autoplot() method renders a forest plot of
point estimates with confidence intervals.
See also
autoplot.creel_design_comparison()
Other "Planning & Sample Size":
creel_n_cpue(),
creel_n_effort(),
creel_power(),
cv_from_n(),
power_creel()
Examples
if (FALSE) { # \dontrun{
# Compare instantaneous vs bus-route effort estimates from two designs
est1 <- estimate_effort(design_a)
est2 <- estimate_effort(design_b)
compare_designs(list(instantaneous = est1, bus_route = est2))
} # }