File size: 239 Bytes
adb5d59
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import streamlit as st
import eda # python file
import prediction # python file

navigation = st.sidebar.selectbox('Page Navigation: ',('EDA','Customer Churn Prediction'))

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