tracinginsights commited on
Commit
196e18e
1 Parent(s): a10db8b

Update pages/Long_Run_Race_Pace.py

Browse files
Files changed (1) hide show
  1. pages/Long_Run_Race_Pace.py +4 -0
pages/Long_Run_Race_Pace.py CHANGED
@@ -25,6 +25,10 @@ DRIVERS_SELECTED = st.multiselect(
25
  drivers,
26
  )
27
 
 
 
 
 
28
  df = Long_Run_Race_Pace.process_data(laps_df)
29
 
30
  df = Long_Run_Race_Pace.remove_outliers(df, DRIVERS_SELECTED)
 
25
  drivers,
26
  )
27
 
28
+ laps_df = laps_df.loc[~laps_df.Driver.isin(REMOVED_DRIVERS)]
29
+
30
+
31
+
32
  df = Long_Run_Race_Pace.process_data(laps_df)
33
 
34
  df = Long_Run_Race_Pace.remove_outliers(df, DRIVERS_SELECTED)