deploy / app.py
ahmadluay's picture
first commit
3e05ceb
raw
history blame contribute delete
No virus
241 Bytes
import streamlit as st
import eda # python file
import prediction # python file
navigation = st.sidebar.selectbox('Page Navigation: ',('EDA','Predict Patients Conditions'))
if navigation == 'EDA':
eda.run()
else:
prediction.run()