File size: 245 Bytes
def27a0
 
 
 
687dc0b
def27a0
687dc0b
def27a0
 
 
1
2
3
4
5
6
7
8
9
10
11
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()