File size: 231 Bytes
8ce5240
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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()