Gigisghifari's picture
Upload 5 files
4e7dbba verified
raw
history blame contribute delete
No virus
193 Bytes
import streamlit as st
import eda
import predict
navigation = st.slidebar.selectbox('Pilih Halaman:', ('EDA','Predict'))
if navigation == 'EDA':
eda.run()
else:
predict.run()