William14045's picture
commit1
242ba32
raw
history blame contribute delete
186 Bytes
import streamlit as st
import eda
import predict
navigation = st.sidebar.selectbox('pilih halaman :', ('EDA',"Prediction"))
if navigation =='EDA':
eda.run()
else:
predict.run()