ilham86's picture
ilham push 9
5d6e040 verified
raw
history blame contribute delete
317 Bytes
import streamlit as st
import eda
import prediction
st.set_page_config(
page_title='Smart Manufacturing for Predictive Maintenance',
layout='wide',
initial_sidebar_state='expanded'
)
page = st.sidebar.selectbox('Pages', ('EDA', 'Prediction'))
if page == 'EDA':
eda.run()
else:
prediction.run()