-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKFCfinal.py
More file actions
26 lines (19 loc) · 813 Bytes
/
KFCfinal.py
File metadata and controls
26 lines (19 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Student ID: 6704860006
# Student Name: Thet Thet Htun
# Student ID: 6704860007
# Student Name: San San Yadanar Htun
# Student ID: 6704860008
# Student Name: Hein Pyae Sone Htet
# Student ID: 6704860012
# Student Name: Nwe Ni Oo Wai
# Student ID: 67048600013
# Student Name: Htun Thiha Myo
import streamlit as st
pg = st.navigation([
st.Page('VisualizationforKFC.py', title='Key Main Charts', icon=':material/analytics:'),
st.Page('Statistics.py', title='Statistics', icon=':material/analytics:'),
st.Page('OtherFindings.py', title='Other Findings', icon=':material/analytics:'),
st.Page('DecisionTree.py', title='Machine learning model by Decision Tree', icon=':material/chat_info:'),
st.Page('KNeighbour.py', title='Machine learning model by K-Neighbour', icon=':material/analytics:'),
])
pg.run()