M2 / src /streamlit_app.py
StefVero's picture
Upload 14 files
1e971b9 verified
Raw
History Blame Contribute Delete
302 Bytes
import streamlit as st
import eda
import prediction
st.set_page_config(
page_title= 'F1 Podiums',
layout='wide',
initial_sidebar_state='expanded'
)
page = st.sidebar.selectbox('Choose Page', ('EDA', 'Prediction'))
if page == 'EDA':
eda.run()
else:
prediction.run()