Gigisghifari's picture
Upload 6 files
11714f4 verified
raw
history blame contribute delete
No virus
196 Bytes
import streamlit as st
import eda
import predict
navigation = st.sidebar.selectbox('Pilih Halaman:', ('EDA','Predict'))
if navigation == 'EDA':
eda.run()
else:
predict.run()