# 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()