Spaces:
Running
Running
tracinginsights
commited on
Commit
•
2a548f5
1
Parent(s):
53e9b55
Update pages/Race_Launch_Performance_Ratings.py
Browse files
pages/Race_Launch_Performance_Ratings.py
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
import streamlit as st
|
2 |
from repo_directory import Race_Launch_Performance_Ratings as rl
|
3 |
-
from repo_directory import button
|
4 |
|
5 |
YEAR_SELECTED = st.selectbox(
|
6 |
'Select Year',
|
7 |
-
(2023, 2022, 2021, 2020, 2019, 2018))
|
8 |
|
9 |
RACE_SELECTED = st.selectbox(
|
10 |
'Select Race',
|
11 |
-
(
|
12 |
|
13 |
SESSION = st.selectbox(
|
14 |
'Select Session',
|
|
|
1 |
import streamlit as st
|
2 |
from repo_directory import Race_Launch_Performance_Ratings as rl
|
3 |
+
from repo_directory import button, utils
|
4 |
|
5 |
YEAR_SELECTED = st.selectbox(
|
6 |
'Select Year',
|
7 |
+
(2024,2023, 2022, 2021, 2020, 2019, 2018))
|
8 |
|
9 |
RACE_SELECTED = st.selectbox(
|
10 |
'Select Race',
|
11 |
+
utils.get_events(YEAR_SELECTED))
|
12 |
|
13 |
SESSION = st.selectbox(
|
14 |
'Select Session',
|