Spaces:
Sleeping
Sleeping
| import streamlit as st | |
| import eda | |
| import prediction | |
| navigation = st.sidebar.selectbox('Choose Page', ('Prediction', 'EDA')) | |
| if navigation == 'Prediction': | |
| prediction.run() | |
| elif navigation == 'EDA': | |
| eda.run() | |