fadyabila's picture
First Commit
a55cc32
raw
history blame
No virus
201 Bytes
import streamlit as st
import eda
import prediction
navigation = st.sidebar.selectbox('Pilih Halaman : ', ('EDA', 'Project A Player'))
if navigation == 'EDA':
eda.run()
else:
prediction.run()