Milestone-2 / app.py
kumala's picture
Upload 5 files
1a6b219 verified
raw
history blame contribute delete
No virus
213 Bytes
import streamlit as st
import eda_m2
import prediction_m2
navigation = st.sidebar.selectbox('Pilih Halaman: ', ('EDA', 'Prediksi'))
if navigation == 'EDA':
eda_m2.run()
else:
prediction_m2.run()