Skip to contents

A basic reporting_triangle object demonstrating standard structure with complete early reference times and progressively incomplete recent times. Useful for simple examples and tests.

Usage

example_reporting_triangle

Format

A reporting_triangle object with 5 reference dates and 4 delays:

reporting_triangle_matrix

5x4 matrix with counts

reference_dates

5 dates starting from 2024-01-01

delays_unit

"days"

Details

This is a simple, clean example without complications like negative values or unusual structures. Ideal for:

  • Package examples demonstrating basic functionality

  • Unit tests for standard cases

  • Vignettes introducing nowcasting concepts

Use example_downward_corr_rt for examples with data quality corrections.

See also

Example datasets example_downward_corr_rt, germany_covid19_hosp, syn_nssp_df, syn_nssp_line_list

Examples

# View the example triangle
example_reporting_triangle
#> Reporting Triangle
#> Delays unit: days
#> Reference dates: 2024-01-01 to 2024-01-05
#> Max delay: 3
#> Structure: 1, 0, 1, 1
#> 
#>              0  1  2  3
#> 2024-01-01  80 50 25 10
#> 2024-01-02 100 50 20 NA
#> 2024-01-03  90 45 NA NA
#> 2024-01-04 110 NA NA NA
#> 2024-01-05  95 NA NA NA

if (FALSE) { # \dontrun{
# Use in nowcasting - requires complete rows for delay estimation
estimate_delay(example_reporting_triangle, n = 2)
} # }