Spaces:
Runtime error
Runtime error
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() |