Spaces:
Running
Running
tracinginsights
commited on
Commit
•
78d8b1c
1
Parent(s):
95acbc0
Update pages/Tyre_Degradation.py
Browse files- pages/Tyre_Degradation.py +27 -27
pages/Tyre_Degradation.py
CHANGED
@@ -1,37 +1,37 @@
|
|
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 |
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
|
31 |
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
|
37 |
-
|
|
|
1 |
+
import streamlit as st
|
2 |
+
from repo_directory import Tyre_Degradation
|
3 |
+
from repo_directory import button
|
4 |
|
5 |
+
YEAR_SELECTED = st.selectbox(
|
6 |
+
'Select year',
|
7 |
+
(2022, 2021, 2020, 2019, 2018))
|
8 |
|
9 |
+
colors_df = Tyre_Degradation.get_colors(YEAR_SELECTED)
|
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 |
+
SESSION = st.selectbox(
|
16 |
+
'Select Session',
|
17 |
+
('R', 'SQ'))
|
18 |
|
19 |
+
laps, f1session, all_driver_compound, all_compounds_used, all_team_compound = Tyre_Degradation.get_laps(YEAR_SELECTED, RACE_SELECTED, SESSION)
|
20 |
|
21 |
+
DRIVERS_SELECTED = st.multiselect(
|
22 |
+
'Select Driver and Tyre',
|
23 |
+
all_driver_compound,
|
24 |
+
)
|
25 |
|
26 |
+
TEAMS_SELECTED = st.multiselect(
|
27 |
+
'Select Team and Tyre',
|
28 |
+
all_team_compound,
|
29 |
+
)
|
30 |
|
31 |
|
32 |
+
compounds_used = st.multiselect(
|
33 |
+
'Select Tyres',
|
34 |
+
all_compounds_used,
|
35 |
+
all_compounds_used)
|
36 |
|
37 |
+
Tyre_Degradation.plot(DRIVERS_SELECTED,compounds_used, f1session, laps, colors_df, TEAMS_SELECTED)
|