Upload app.py
Browse files
app.py
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
import streamlit as st
|
2 |
import eda
|
3 |
-
import
|
4 |
|
5 |
navigation = st.sidebar.selectbox('Pilih Halaman:', {'EDA':'eda','Prediction':'pred'})
|
6 |
|
7 |
if navigation == 'EDA':
|
8 |
eda.run()
|
9 |
else:
|
10 |
-
|
|
|
1 |
import streamlit as st
|
2 |
import eda
|
3 |
+
import predict
|
4 |
|
5 |
navigation = st.sidebar.selectbox('Pilih Halaman:', {'EDA':'eda','Prediction':'pred'})
|
6 |
|
7 |
if navigation == 'EDA':
|
8 |
eda.run()
|
9 |
else:
|
10 |
+
predict.run()
|