F1-analysis / pages /Max_Throttle.py
tracinginsights's picture
Update pages/Max_Throttle.py
4f350d0 verified
raw
history blame contribute delete
No virus
455 Bytes
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, )