cobasekalilagi / app.py
Bagusaja's picture
Upload 10 files
51620a6 verified
raw
history blame contribute delete
182 Bytes
import streamlit as st
import eda
import prediction
page = st.sidebar.selectbox('Pilih Halaman: ', ('EDA', 'Prediction'))
if page == 'EDA':
eda.run()
else:
prediction.run()