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

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

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