danupurnomo's picture
Initial commit
cb701c3 verified
raw
history blame contribute delete
206 Bytes
import streamlit as st
import eda
import prediction
halaman = st.sidebar.selectbox('Pilih Halaman : ', ('EDA', 'Predict A Player'))
if halaman == 'EDA':
eda.run()
else:
prediction.run()