Spaces:
Runtime error
Runtime error
| #import libraries | |
| import streamlit as st | |
| import eda | |
| import prediction | |
| #navigation | |
| navigation = st.sidebar.selectbox('Choose Page: ', ('Predictor', 'EDA')) | |
| #pilih page | |
| if navigation == 'Predictor': | |
| prediction.run() | |
| else: | |
| eda.run() |