Spaces:
Sleeping
Sleeping
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() |