FIFA2022 / app.py
nyomanyudisdeveloper's picture
Update app.py
6eea1b8 verified
raw
history blame contribute delete
197 Bytes
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()