Learn R Programming

rKolada (version 0.2.3)

values_minimize: Simplify a Kolada values table

Description

Simplify a Kolada values table, i.e as created by get_values, by removing columns that contain monotonous data, i.e. that contain only one value for all observations.

Usage

values_minimize(values_df)

Value

A Kolada values table

Arguments

values_df

A Kolada value table, as created by get_values.

Examples

Run this code
# Download values for all available years of a given KPI for
# Malmö municipality (code 1280)
if (kolada_available()) {
vals <- get_values(kpi = "N45933", municipality = "1280", simplify = TRUE)
# (Returns a table with 5 rows and 8 columns)

# Remove columns with no information to differentiate between rows
values_minimize(vals)
# (Returns a table with 5 rows and 4 columns)
}

Run the code above in your browser using DataLab