Skip to content

Commit

Permalink
build(wiki): now some rows may be duplicated, so ensure remove these
Browse files Browse the repository at this point in the history
  • Loading branch information
eitsupi committed Apr 29, 2024
1 parent 183265d commit aee06e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build/reports/wiki_home.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ df_images <- fs::dir_ls(path = "reports/imagelist", glob = "*.tsv") |>
CreatedTime = lubridate::ymd_hms(X4),
.keep = "none"
) |>
dplyr::slice_max(order_by = CreatedTime, with_ties = TRUE, by = tags)
dplyr::slice_max(order_by = CreatedTime, with_ties = TRUE, by = tags) |>
dplyr::distinct()
df_current_raw <- df_definitions |>
Expand Down

0 comments on commit aee06e2

Please sign in to comment.