File size: 267 Bytes
6bce4ff
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import eda as eda
import prediction
import streamlit as st
PAGES = {
    "Exploratory Data Analysis": eda,
    "Model Prediction": prediction
}
st.sidebar.title('Navigation')
selection = st.sidebar.radio("Go to", list(PAGES.keys()))
page = PAGES[selection]
page.app()