milestone2 / app.py
ardifarizky's picture
first commit
1c58500
raw history blame
No virus
175 Bytes
import streamlit as st
import eda
import pred
page = st.sidebar.selectbox('Pilih Halaman: ', ('Prediction', 'EDA'))
if page == 'EDA':
eda.run()
else:
pred.run()