Spaces:
Sleeping
Sleeping
final app
Browse files
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 predict
|
4 |
|
5 |
navigation = st.sidebar.selectbox('Pilih Halaman:', {'EDA':'Predict'})
|
6 |
|
7 |
if navigation == 'EDA':
|
8 |
+
eda.run()
|
9 |
+
else:
|
10 |
+
predict.run()
|