fauzanrisqullah commited on
Commit
4844786
1 Parent(s): 55e0091

upload app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -0
app.py ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import eda
3
+ import prediction
4
+
5
+ st.set_page_config(
6
+ page_title="FIFA 2022",
7
+ layout="wide",
8
+ initial_sidebar_state="expanded"
9
+ )
10
+
11
+ halaman = st.sidebar.selectbox("Pilih Halaman: ", ("EDA", "Prediction"))
12
+
13
+ if halaman == "EDA":
14
+ eda.run()
15
+ else:
16
+ prediction.run()