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