fauzanrisqullah's picture
upload app.py
4844786
raw
history blame contribute delete
295 Bytes
import streamlit as st
import eda
import prediction
st.set_page_config(
page_title="FIFA 2022",
layout="wide",
initial_sidebar_state="expanded"
)
halaman = st.sidebar.selectbox("Pilih Halaman: ", ("EDA", "Prediction"))
if halaman == "EDA":
eda.run()
else:
prediction.run()