Spaces:
Running
Running
File size: 434 Bytes
f5aae28 00a0db0 f5aae28 fedf356 4f350d0 f5aae28 4f350d0 f5aae28 4f350d0 f5aae28 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import streamlit as st
from repo_directory.v2 import Max_Throttle, utils
from repo_directory import button
# selections
YEAR = st.selectbox(
'Select Year',
utils.get_years())
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, ) |