Milestone2-p1 / app.py
Azrieldr
main commit
e5258c2
import streamlit as st
import Prediction
import eda
navigation = st.sidebar.selectbox('Pilih Halaman: ', ('Predict', 'EDA'))
if navigation == 'Predict':
Prediction.run()
else:
eda.run()