Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,10 @@
|
|
1 |
import streamlit as st
|
2 |
-
import
|
|
|
3 |
|
4 |
-
navigation = st.sidebar.selectbox('Pilih Halaman:',
|
5 |
|
6 |
if navigation == 'EDA':
|
7 |
-
eda.run()
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
+
import eda
|
3 |
+
import prediction
|
4 |
|
5 |
+
navigation = st.sidebar.selectbox('Pilih Halaman:',('EDA','Predict a player'))
|
6 |
|
7 |
if navigation == 'EDA':
|
8 |
+
eda.run()
|
9 |
+
else:
|
10 |
+
prediction.run()
|