Extract a vector of KPI ID strings from a Kolada KPI metadata table
Source:R/kpi.R
kpi_extract_ids.Rd
This function is primarily intended as a convenient way to pass a (filtered)
Kolada KPI metadata table to get_values
.
Arguments
- kpi_df
A Kolada KPI metadata table, e.g. as created by
get_kpi
.
Examples
if (kolada_available()) {
# Download Kolada data for the first KPI in the list matching the term "Grundskola" (primary school)
# for the years 2010-2019
# (omit the parameter "max_results" to actually download all data)
kpi_filter <- get_kpi(max_results = 500) %>%
kpi_search("Grundskola")
# Only keep the top row
kpi_filter <- kpi_filter[1, ]
# Only download 100 observations
# (omit the parameter "max_results" to actually download all data)
kld_data <- get_values(
kpi = kpi_extract_ids(kpi_filter),
period = 2010:2019,
max_results = 100
)
}