Spaces:
Running
Running
# Filter out Safety car/VSC laps | |
import streamlit as st | |
from repo_directory import Average_Race_Pace | |
from repo_directory import button | |
from repo_directory import utils | |
import pandas as pd | |
YEAR_SELECTED = st.selectbox( | |
'Select Year', | |
(2024,2023, 2022, 2021, 2020, 2019, 2018)) | |
RACE_SELECTED = st.selectbox( | |
'Select Race', | |
utils.get_events(YEAR_SELECTED)) | |
_, df = Average_Race_Pace.plot(YEAR_SELECTED, RACE_SELECTED) | |
st.dataframe(pd.DataFrame(df)[['Driver','LapTime','Diff','Team']]) | |