File size: 181 Bytes
94c11bc
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import streamlit as st
import eda
import prediction

page = st.sidebar.selectbox('Choose Page: ', ('EDA', 'Prediction'))

if page == 'EDA':
    eda.run()
else:
    prediction.run()