Spaces:
Runtime error
Runtime error
File size: 281 Bytes
a4d99c6 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import streamlit as st
import eda
import prediction
navigation = st.sidebar.selectbox('Select Page :', ('Exploratory Data Analysis', 'Predict Flight Price'))
if navigation == 'Exploratory Data Analysis':
eda.runEDA()
else:
prediction.runPredictor()
#streamlit run app.py |