gilangw's picture
Upload 6 files
2c1a3a1
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