dnirfana's picture
change eda position in navigation to be the second page
8642210 verified
# 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()