kennethv1706's picture
Upload 11 files
b752079
raw
history blame contribute delete
No virus
358 Bytes
import streamlit as st
import eda
import model
page = st.sidebar.selectbox(label='Select Page:', options=['Home Page', 'Exploration Data Analysis', 'Model Prediksi'])
if page == 'Home Page':
st.header('Welcome Page - Silahkan pilih menu lain di Select Box untuk memulai!')
elif page == 'Exploration Data Analysis':
eda.run()
else:
model.run()