FerdiErs's picture
commit project milestone
e107c83
raw
history blame contribute delete
216 Bytes
import streamlit as st
import eda
import prediction
navigation = st.sidebar.selectbox('Choose Page : ', ('Description','Salary Estimator'))
if navigation == 'Description':
eda.run()
else:
prediction.run()