From 8767665e081bfa9c712e869622c8821728584344 Mon Sep 17 00:00:00 2001 From: Phil Henrickson Date: Mon, 24 Mar 2025 09:37:55 -0500 Subject: [PATCH] fixed ranking issue with top categories --- index.qmd | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/index.qmd b/index.qmd index 865a1e2..ad29488 100644 --- a/index.qmd +++ b/index.qmd @@ -193,6 +193,7 @@ categories = c( 'Economic', 'Card Game', 'Wargame', + 'Fantasy', 'Abstract Strategy', 'Dice', 'Party Game' @@ -208,12 +209,14 @@ games_and_categories = top_categories = map( categories, ~ predictions |> + filter(game_id != 388225) |> filter(!is.na(thumbnail)) |> inner_join( games_and_categories |> filter(value == .x), by = join_by(game_id) ) |> + arrange(desc(.pred_bayesaverage)) |> head(25) |> predictions_gt(games = games) |> gtExtras::gt_theme_nytimes() |> @@ -275,6 +278,15 @@ top_categories[[6]] ``` +### `r categories[7]` + +```{r} +#| class: scroll +top_categories[[7]] + +``` + + :::