Gansol's picture
Upload 3 files
79eb720
raw
history blame contribute delete
No virus
209 Bytes
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()