Skip to contents

Extracts a variable's title from the questionnaire data, adapted to the actual election_name() if applicable.

Usage

var_title(
  var_name,
  ballot_date = pal::pkg_config_val("ballot_date"),
  canton = cantons(ballot_date)
)

Arguments

var_name

Variable name. A character scalar.

ballot_date

FOKUS-covered ballot date. One of

  • "2018-09-23"

  • "2018-11-25"

  • "2019-10-20"

  • "2020-09-27"

  • "2020-10-18"

  • "2021-11-28"

  • "2023-06-18"

  • "2024-10-20"

canton

FOKUS-covered canton name. One of

  • "aargau"

Value

NULL if the variable is not present at the specified ballot_date and canton, otherwise a character scalar.

Examples

fokus::var_title(var_name = "weight_decision",
                 ballot_date = "2018-11-25",
                 canton = "aargau")
#> [1] "Gewichtung nach Stimmentscheiden"

fokus::var_title(var_name = "weight_decision",
                 ballot_date = "2019-10-20",
                 canton = "aargau")
#> [1] "Gewichtung nach gegenwärtigen Wahlentscheiden"

fokus::var_title(var_name = "voting_decision_cantonal_proportional_election_1_party",
                 ballot_date = "2024-10-20",
                 canton = "aargau")
#> [1] "Stimmentscheid Partei Grossratswahl 2024"