nyomanyudisdeveloper commited on
Commit
6eea1b8
·
verified ·
1 Parent(s): f8a16fe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -3
app.py CHANGED
@@ -1,7 +1,10 @@
1
  import streamlit as st
2
- import predict
 
3
 
4
- navigation = st.sidebar.selectbox('Pilih Halaman:', {'EDA':'Predict'})
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()