--- title: "Developer Vignette: Including the avia data to the package" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{developer-vignette-including-the-avia-data-to-the-package} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) ``` ```{r setup} library(chronicler) ``` This vignette is only needed for the developers of `{chronicler}`. ```{r parsermd-chunk-1, eval = F} avia <- readr::read_tsv("https://ec.europa.eu/eurostat/api/dissemination/sdmx/2.1/data/avia_par_lu?format=tsv&compressed=false") %>% filter(!grepl("^A.*", `freq,unit,tra_meas,airp_pr\\TIME_PERIOD`)) ```