Skip to contents

This dataset contains time series data with actual values and corresponding confidence intervals.

Usage

confidence_intervals

Format

A tibble with 368 rows and 7 variables:

.model_id

Integer. The model ID.

.model_desc

Character. Description of the model.

.key

Factor. The key indicating actual or forecast data.

.index

Date. The date of the observation.

.value

Numeric. The actual value.

.conf_lo

Numeric. The lower bound of the confidence interval.

.conf_hi

Numeric. The upper bound of the confidence interval.

Examples

data(confidence_intervals)
head(confidence_intervals)
#> # A tibble: 6 × 7
#>   .model_id .model_desc .key   .index     .value .conf_lo .conf_hi
#>       <int> <chr>       <fct>  <date>      <dbl>    <dbl>    <dbl>
#> 1        NA ACTUAL      actual 1990-01-01   6370       NA       NA
#> 2        NA ACTUAL      actual 1990-02-01   6430       NA       NA
#> 3        NA ACTUAL      actual 1990-03-01   6520       NA       NA
#> 4        NA ACTUAL      actual 1990-04-01   6580       NA       NA
#> 5        NA ACTUAL      actual 1990-05-01   6620       NA       NA
#> 6        NA ACTUAL      actual 1990-06-01   6690       NA       NA