tracinginsights commited on
Commit
37827e3
1 Parent(s): 9b0e922

Create pages/Race_Launch_Performance_Ratings.py

Browse files
pages/Race_Launch_Performance_Ratings.py ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ YEAR_SELECTED = st.selectbox(
2
+ 'Select Year',
3
+ (2022, 2021, 2020, 2019, 2018))
4
+
5
+
6
+
7
+ # # select race
8
+ # available_races = race_names_df[race_names_df.year == YEAR_SELECTED].name.tolist()
9
+
10
+
11
+ RACE_SELECTED = st.selectbox(
12
+ 'Select Race',
13
+ (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22))
14
+
15
+
16
+ SESSION = st.selectbox(
17
+ 'Select Session',
18
+ ('SQ', 'R'))