analytic-data-efficiency / src /streamlit_app.py
Heizsenberg's picture
final
b33b5ec
raw
history blame contribute delete
314 Bytes
import streamlit as st
import eda
import prediction
st.set_page_config(
page_title="Customer Credit Default Prediction",
layout = 'wide',
initial_sidebar_state='expanded'
)
page = st.sidebar.selectbox('Pilih Page: ', ('EDA', 'Prediction'))
if page == 'EDA':
eda.run()
else:
prediction.run()