Spaces:
Runtime error
Runtime error
File size: 194 Bytes
e5258c2 |
1 2 3 4 5 6 7 8 9 10 |
import streamlit as st
import Prediction
import eda
navigation = st.sidebar.selectbox('Pilih Halaman: ', ('Predict', 'EDA'))
if navigation == 'Predict':
Prediction.run()
else:
eda.run() |