Gieorgie's picture
Upload 7 files
0c7270f verified
raw
history blame contribute delete
No virus
193 Bytes
import eda
import prediction
import streamlit as st
page = st.sidebar.selectbox('Pilih Halaman: ', ('EDA', 'Prediction'))
if page == 'EDA':
eda.run()
else:
prediction.run()