Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 : ', ('
|
6 |
|
7 |
-
if page == '
|
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()
|