F1-analysis / pages /Race_Launch_Performance_Ratings.py
tracinginsights's picture
Update pages/Race_Launch_Performance_Ratings.py
73fa91b
raw
history blame
475 Bytes
import streamlit as st
from F1-analysis.repo_directory import Race_Launch_Performance_Ratings
from F1-analysis.repo_directory import button
YEAR_SELECTED = st.selectbox(
'Select Year',
(2022, 2021, 2020, 2019, 2018))
RACE_SELECTED = 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',
('R', 'SQ'))
Race_Launch_Performance_Ratings.plot_ratings()