kaz9112's picture
-changed main.py to app.py
d13839c
raw
history blame contribute delete
No virus
231 Bytes
import streamlit as st
import EDA
import prediction
navigation = st.sidebar.selectbox('Choose page: ', ('Exploratory Data Analysis', 'Predict a Views'))
if navigation == 'Predict a Views':
prediction.run()
else:
EDA.run()