FerdiErs's picture
commit first try
68d3508
raw
history blame
215 Bytes
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()