Fifa_prediction / app.py
hammammahdy's picture
first commit
206bf0d
raw
history blame
185 Bytes
import streamlit as st
import eda
import prediction
page = st.sidebar.selectbox('Pilih Halaman :', ('EDA', 'Prediction'))
if page == 'EDA':
eda.run()
else:
prediction.run()