Spaces:
Runtime error
Runtime error
File size: 203 Bytes
6bbca31 |
1 2 3 4 5 6 7 8 9 10 11 |
import streamlit as st
import eda
import prediction
navigation = st.sidebar.selectbox('pilih halaman: ', ('Explore', 'Prediction'))
if navigation == 'Explore':
eda.run()
else:
prediction.run()
|