CustomerChurn / app.py
hilalrd's picture
Upload 6 files
be34d0f
raw
history blame contribute delete
No virus
208 Bytes
import streamlit as st
import EDA
import prediction
navigation = st.sidebar.selectbox('Pilih Halaman : ', ('EDA', 'Predict Customer Churn'))
if navigation == 'EDA':
EDA.run()
else:
prediction.run()