vumichien's picture
fix ui
687dc0b
raw
history blame contribute delete
245 Bytes
import streamlit as st
import eda
import prediction
navigation = st.sidebar.selectbox('Chọn trang: ', ('Phân tích dữ liệu', 'Dự đoán lương'))
if navigation == 'Phân tích dữ liệu':
eda.run()
else:
prediction.run()