fifa-2022-rmt-24 / main.py
fauzanrisqullah's picture
initial commit
55e0091
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()