dnirfana's picture
Upload 4 files
28c51af verified
raw
history blame
283 Bytes
# Contents of app.py
import eda
import prediction
import streamlit as st
PAGES = {
"Exploratory Data Analysis": eda,
"Make Predictions": prediction
}
st.sidebar.title('Navigation')
selection = st.sidebar.radio("Go to", list(PAGES.keys()))
page = PAGES[selection]
page.app()