Yt-view-pred-sam / main.py
kaz9112's picture
first upload
8ce5240
raw
history blame
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()