Spaces:
Runtime error
Runtime error
File size: 239 Bytes
a86a756 7676233 a86a756 7676233 a86a756 7676233 a86a756 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #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() |