Spaces:
Running
Running
File size: 513 Bytes
60a920d 4314369 1f6345c 75185de 8399e7a 75185de 8399e7a 75185de 8399e7a 75185de 2fe6a20 a5e63cd 2fe6a20 a5e63cd b180756 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# Filter out Safety car/VSC laps
import streamlit as st
from repo_directory import Average_Race_Pace
from repo_directory import button
import pandas as pd
YEAR_SELECTED = st.selectbox(
'Select Year',
(2022, 2021, 2020, 2019, 2018))
RACE_SELECTED = st.selectbox(
'Select Race',
(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22))
_, df = Average_Race_Pace.plot(YEAR_SELECTED, RACE_SELECTED)
_
st.dataframe(pd.DataFrame(df)[['Driver','LapTime','Diff','Team']])
|