rogers1000/cyclingchaos

Pivot Results Table - Startlist Count not including DNFs

Closed this issue · 1 comments

results_pivot_gt <- results_pivot(2023,"Men","Rider","GC Time from Leader","Riders - 45992","","","")

Results for the code don't count LBL race where Pog crashed out towards count. Races Count is incorrect and is counting DNFs for Race Startlist

Fixed issue. Was relating to a filter on startlist count which excluded non-finishers. Probably was an error thinking that it was about races_finished rather than races_started.

Code with error

  filter(position_edit_gc < 1000) |>
  group_by(pivot_id) |>
  summarise(races_count = n_distinct(paste0(first_cycling_race_id,"_",stage)))

Code without error:

results_pivot_races_count <- results_pivot_filters |>
  group_by(pivot_id) |>
  summarise(races_count = n_distinct(paste0(first_cycling_race_id,"_",stage)))