Skip to contents

Returns a structured list of a proposal argument's data from the proposal-specific raw supplemental date-specific FOKUS questionnaire data.

Usage

raw_qstnr_suppl_argument(
  ballot_date = pal::pkg_config_val("ballot_date"),
  lvl = all_lvls,
  canton = pal::pkg_config_val("canton"),
  proposal_nr = 1L,
  side = all_argument_sides,
  argument_nr = 1L
)

Arguments

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"

lvl

Political level. One of "cantonal" or "federal".

canton

FOKUS-covered canton name. One of

  • "aargau"

proposal_nr

Proposal number. A positive integerish scalar.

side

Proposal argument side. One of "pro" or "contra".

argument_nr

Proposal argument number. A positive integerish scalar.

Value

A strict list.

Examples

fokus:::raw_qstnr_suppl_argument(ballot_date = "2018-11-25",
                                 lvl = "cantonal",
                                 canton = "aargau",
                                 proposal_nr = 2,
                                 side = "pro",
                                 argument_nr = 2)
#> $de
#> $de$long
#> [1] "Die Einführung des Ständeratswahlrechts für Auslandschweizer/innen ist gerechtfertigt, weil nur sehr geringe Mehrkosten entstehen."
#> 
#> $de$short
#> [1] "Mehrkosten sind sehr gering"
#> 
#> 
#> $en
#> $en$long
#> [1] "The introduction of the right to elect members of the Council of States for Swiss citizens living abroad is justified because the additional costs are very low."
#> 
#> 
#> $nr
#> [1] 2
#> 
#> $side
#> [1] "pro"
#>