Spaces:
Running
Running
import streamlit as st | |
from repo_directory import Max_Throttle | |
from repo_directory import button, utils | |
# selections | |
YEAR = st.selectbox( | |
'Select Year', | |
(2024,2023, 2022, 2021, 2020, 2019, 2018)) | |
RACE = st.selectbox( | |
'Select Race', | |
utils.get_events(YEAR)) | |
SESSION = st.selectbox( | |
'Select Session', | |
utils.get_sessions(YEAR, RACE)) | |
Max_Throttle.plot(YEAR, RACE, SESSION, ) | |
Max_Throttle.plot_teams(YEAR, RACE, SESSION, ) |