Spaces:
Running
Running
tracinginsights
commited on
Commit
·
65a3d94
1
Parent(s):
f5aae28
Create LapTimes_Delta.py
Browse files- pages/LapTimes_Delta.py +31 -0
pages/LapTimes_Delta.py
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
from repo_directory import LapTime_Difference
|
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 |
+
(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23))
|
12 |
+
|
13 |
+
SESSION = st.selectbox(
|
14 |
+
'Select Session',
|
15 |
+
('FP1', 'FP2', 'FP3','SS', 'Q', 'SQ', 'R'))
|
16 |
+
|
17 |
+
|
18 |
+
laps, drivers = LapTime_Difference.get_data(YEAR_SELECTED, RACE_SELECTED, SESSION)
|
19 |
+
|
20 |
+
|
21 |
+
DRIVER_1 = st.selectbox(
|
22 |
+
'Select Driver 1',
|
23 |
+
drivers)
|
24 |
+
|
25 |
+
DRIVER_2 = st.selectbox(
|
26 |
+
'Select Driver 2',
|
27 |
+
drivers)
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
LapTime_Difference.plot(laps, DRIVER_1, DRIVER_2)
|