fifa_sby_01 / app.py
gilangw's picture
Upload 10 files
5b088ed
raw
history blame contribute delete
212 Bytes
import streamlit as st
import eda
import prediction
navigation = st.sidebar.selectbox('Pilih Halaman :', ('EDA', 'Predict a player'))
if navigation == 'EDA':
eda.runEDA()
else:
prediction.runPredictor()