Spaces:
Runtime error
Runtime error
import streamlit as st | |
import prediction | |
import eda | |
page = st.sidebar.selectbox('Pilih Halaman :', ('Prediction', 'EDA')) | |
# if page == 'EDA': | |
# eda.run() | |
# else: | |
if page == 'Prediction': | |
prediction.run() | |
else: | |
eda.run() |