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()