Skip to contents

Sample instantaneous count observations matching example_calendar. Contains effort measurements for each survey date, suitable for use with add_counts() and estimate_effort().

Usage

example_counts

Format

A data frame with 14 rows and 3 columns:

date

Survey date (Date class), matching example_calendar dates

day_type

Day type stratum: "weekday" or "weekend", matching calendar

effort_hours

Numeric count variable: total angler-hours observed

Source

Simulated data for package examples

Examples

# Load and use with a creel design
data(example_calendar)
data(example_counts)

design <- creel_design(example_calendar, date = date, strata = day_type)
design <- add_counts(design, example_counts)
#> Warning: No weights or probabilities supplied, assuming equal probability
result <- estimate_effort(design)
print(result)
#> 
#> ── Creel Survey Estimates ──────────────────────────────────────────────────────
#> Method: Total
#> Variance: Taylor linearization
#> Confidence level: 95%
#> Effort target: sampled_days
#> 
#> # A tibble: 1 × 7
#>   estimate    se se_between se_within ci_lower ci_upper     n
#>      <dbl> <dbl>      <dbl>     <dbl>    <dbl>    <dbl> <int>
#> 1     372.  13.2       13.2         0     344.     401.    14