creditcard / app.py
nyomanyudisdeveloper's picture
First Commit
8124116 verified
raw
history blame contribute delete
208 Bytes
import streamlit as st
import eda
import prediction
navigation = st.sidebar.selectbox('Pilih Halaman:', {'EDA':'eda','Prediction':'pred'})
if navigation == 'EDA':
eda.run()
else:
prediction.run()