File size: 197 Bytes
f8a16fe
6eea1b8
 
58f46f5
6eea1b8
58f46f5
 
6eea1b8
 
 
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()