Spaces:
Sleeping
Sleeping
File size: 202 Bytes
19720a9 |
1 2 3 4 5 6 7 8 9 10 |
import streamlit as st
import EDA
import prediction
navigation = st.sidebar.selectbox('Pilih Halaman : ', ('EDA','Predict A Player'))
if navigation == 'EDA':
EDA.run()
else:
prediction.run() |