RMT026 / app.py
mnurbani's picture
first deploy
0855a17
raw
history blame contribute delete
No virus
187 Bytes
import streamlit as st
import eda1
import prediction
page = st.sidebar.selectbox('Pilih Halaman : ', ('EDA', 'Prediction'))
if page == 'EDA' :
eda1.run()
else:
prediction.run()