You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think there's something wrong with the week 39 data@havishak. If you look at individual_results_df, each contestant competes from 1959 to 2024, which is impossible.
library(tidyverse)
tuesdata<-tidytuesdayR::tt_load('2024-09-24')
individual_results_df<-tuesdata$individual_results_dfindividual_results_df|>
summarise(year_min= min(year), year_max= max(year), .by=contestant)
#> # A tibble: 609 × 3#> contestant year_min year_max#> <chr> <dbl> <dbl>#> 1 Haojia Shi 1959 2024#> 2 Ivan Chasovskikh 1959 2024#> 3 Alexander Wang 1959 2024#> 4 Satoshi Kano 1959 2024#> 5 László Bence Simon 1959 2024#> 6 Adhitya Mangudy Venkata Ganesh 1959 2024#> 7 Qiming Xu 1959 2024#> 8 Hyeongjoe Chu 1959 2024#> 9 Alex Chui 1959 2024#> 10 Jessica Wan 1959 2024#> # ℹ 599 more rows
I think there's something wrong with the week 39 data @havishak. If you look at
individual_results_df
, each contestant competes from 1959 to 2024, which is impossible.Created on 2024-09-21 with reprex v2.1.0
The text was updated successfully, but these errors were encountered: