viruthik's picture
Upload 8 files
a4d99c6
raw
history blame contribute delete
281 Bytes
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