4fef195 0556ccf 4fef195 96a05eb
1
2
3
4
5
6
7
8
9
10
11
12
13
#import libraries import streamlit as st import eda import prediction #navigation navigation = st.sidebar.selectbox('Choose Page: ', ('Predictor', 'EDA')) #pilih page if navigation == 'Predictor': prediction.run() else: eda.run()