dnirfana commited on
Commit
8642210
1 Parent(s): bfabd9a

change eda position in navigation to be the second page

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -3,11 +3,11 @@ import eda
3
  import prediction
4
  import streamlit as st
5
 
6
-
7
  PAGES = {
8
- "Exploratory Data Analysis": eda,
9
- "Make Predictions": prediction
10
- }
 
11
  st.sidebar.title('Navigation')
12
  selection = st.sidebar.radio("Go to", list(PAGES.keys()))
13
  page = PAGES[selection]
 
3
  import prediction
4
  import streamlit as st
5
 
 
6
  PAGES = {
7
+ "Make Predictions": prediction,
8
+ "Exploratory Data Analysis": eda
9
+ }
10
+
11
  st.sidebar.title('Navigation')
12
  selection = st.sidebar.radio("Go to", list(PAGES.keys()))
13
  page = PAGES[selection]