Creates candidate question pairs from common_risks() for use in
an interactive risk comparison quiz. Each pair contains two activities
with similar micromort values, making the comparison challenging and
educational.
Usage
quiz_pairs(
min_ratio = 1.1,
max_ratio = 2,
prefer_cross_category = TRUE,
seed = NULL,
difficulty = NULL
)Arguments
- min_ratio
Minimum ratio between micromort values in a pair. Values above 1.0 exclude identical-risk pairs that are unanswerable. Default 1.1. Ignored when
difficultyis non-NULL.- max_ratio
Maximum ratio between micromort values in a pair. Lower values produce harder questions. Default 2.0. Ignored when
difficultyis non-NULL.- prefer_cross_category
If
TRUE(default), pairs from different risk categories are prioritised over same-category pairs.- seed
Optional random seed for reproducibility.
- difficulty
Optional difficulty level. One of
"easy","medium","hard", or"mixed". When non-NULL, overridesmin_ratioandmax_ratioto use the full pool (ratios 1.5–10) and assigns difficultybased on data-driven terciles:
hard: lowest third of ratios (hardest to distinguish)
medium: middle third
easy: highest third (easiest to distinguish)
mixed: samples equally from all three tiers
When
NULL(default), the originalmin_ratio/max_ratiobehaviour is preserved and nodifficultycolumn is added.
Value
A tibble with columns:
activity_a,micromorts_a,category_a,hedgeable_pct_a,period_aactivity_b,micromorts_b,category_b,hedgeable_pct_b,period_bdescription_a,help_url_a,description_b,help_url_bratio(max/min of the two micromort values)answer("a" or "b" — whichever activity is riskier)difficulty(only whendifficultyis non-NULL)
Examples
pairs <- quiz_pairs(seed = 42)
head(pairs)
#> # A tibble: 6 × 16
#> activity_b activity_a micromorts_a category_a hedgeable_pct_a period_a
#> <chr> <chr> <dbl> <chr> <dbl> <chr>
#> 1 Airline pilot (an… Commuting… 0.13 Travel 0 per trip
#> 2 All US workers ba… Commuting… 0.13 Travel 0 per trip
#> 3 American football COVID-19 … 23 COVID-19 0 11 week…
#> 4 Base jumping (per… Living in… 500 COVID-19 0 per mon…
#> 5 Bee/wasp sting (g… High-alti… 0.035 Environme… 0 per year
#> 6 COVID-19 infectio… Himalayan… 12000 Mountaine… 0 per exp…
#> # ℹ 10 more variables: micromorts_b <dbl>, category_b <chr>,
#> # hedgeable_pct_b <dbl>, period_b <chr>, ratio <dbl>, answer <chr>,
#> # description_a <chr>, help_url_a <chr>, description_b <chr>,
#> # help_url_b <chr>
# Easy questions (large ratio differences)
easy <- quiz_pairs(difficulty = "easy", seed = 42)
head(easy)
#> # A tibble: 6 × 17
#> activity_b activity_a micromorts_a category_a hedgeable_pct_a period_a
#> <chr> <chr> <dbl> <chr> <dbl> <chr>
#> 1 Airline pilot (an… COVID-19 … 1 COVID-19 0 11 week…
#> 2 Airline pilot (an… Walking (… 1 Travel 0 per trip
#> 3 Airline pilot (an… Living 2 … 1 Environme… 0 per 2 m…
#> 4 All US workers ba… Train (10… 1 Travel 0 per trip
#> 5 All US workers ba… Walking (… 1 Travel 0 per trip
#> 6 All US workers ba… Driving (… 1 Travel 0 per trip
#> # ℹ 11 more variables: micromorts_b <dbl>, category_b <chr>,
#> # hedgeable_pct_b <dbl>, period_b <chr>, ratio <dbl>, difficulty <chr>,
#> # answer <chr>, description_a <chr>, help_url_a <chr>, description_b <chr>,
#> # help_url_b <chr>
