William14045 commited on
Commit
0cd86ea
1 Parent(s): a8914ff
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import eda
3
+ import predict
4
+
5
+ navigation = st.sidebar.selectbox('pilih halaman :', ('EDA',"Prediction"))
6
+
7
+ if navigation =='EDA':
8
+ eda.run()
9
+ else:
10
+ predict.run()