File size: 532 Bytes
e7112bf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import streamlit as st
from repo_directory import Downforce_levels
from repo_directory import button



# selections
YEAR = st.selectbox(
    'Select Year',
    (2022, 2021, 2020, 2019, 2018))

RACE = st.selectbox(
    'Select Race',
    (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22))


SESSION = st.selectbox(
    'Select Session',
    ('FP1', 'FP2', 'FP3', 'Q', 'SQ', 'R'))

CIRCUIT_LENGTH = st.number_input('Circuit Length in metres')

Downforce_levels.plot(YEAR, RACE, SESSION, CIRCUIT_LENGTH)