File size: 215 Bytes
68d3508
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import streamlit as st 
import eda
import prediction 

navigation = st.sidebar.selectbox('Choose Page : ', ('Description','Churn Estimator'))

if navigation == 'Description':
    eda.run()
else:
    prediction.run()