File size: 287 Bytes
28c51af
 
 
 
 
 
8642210
 
 
 
28c51af
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Contents of app.py
import eda
import prediction
import streamlit as st

PAGES = {
    "Make Predictions": prediction,
    "Exploratory Data Analysis": eda
    }

st.sidebar.title('Navigation')
selection = st.sidebar.radio("Go to", list(PAGES.keys()))
page = PAGES[selection]
page.app()