File size: 209 Bytes
79eb720
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import streamlit as st
import EDA
import Prediction

Navigation = st.sidebar.selectbox('Pilih Halaman:', ('EDA','Predict Credit Card Customer'))
if Navigation == 'EDA':
    EDA.run()
else:
    Prediction.run()