ardian407 commited on
Commit
e1e079c
1 Parent(s): 0af8f39

Update app.py

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