mnurbani commited on
Commit
a7b312f
·
1 Parent(s): 8e1ae11

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -2,9 +2,9 @@ import streamlit as st
2
  import eda
3
  import prediction
4
 
5
- page = st.sidebar.selectbox('Pilih Halaman : ', ('EDA', 'Prediction'))
6
 
7
- if page == 'EDA' :
8
  eda.run()
9
  else:
10
  prediction.run()
 
2
  import eda
3
  import prediction
4
 
5
+ page = st.sidebar.selectbox('Pilih Halaman : ', ('Dashboard', 'Prediction'))
6
 
7
+ if page == 'Dashboard' :
8
  eda.run()
9
  else:
10
  prediction.run()