churn_risk / app.py
pram2601's picture
deployment
c092e6e
import streamlit as st
import eda
import prediction
navigation = st.sidebar.selectbox('Pilih Halaman : ', ('EDA','Predict'))
if navigation == 'EDA':
eda.run()
else:
prediction.run()