-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.py
54 lines (46 loc) · 1.12 KB
/
app.py
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# app.py
# app.py
import app1
import app2
import homepage
import predict
import change_Detection
import about_this_project
import info_About_models
import correlation_matrix
import density_of_each_attr
import html_profiling
# import EDUsingPandasProfiling
import streamlit as st
import time
# Spinner
with st.spinner("Waiting .."):
time.sleep(5)
PAGES = {
"Home": homepage,
"Data Visualisation ": app1,
#"EDA analysis": app2,
"Change Detection on attributes": change_Detection,
#"Correlation matrix": correlation_matrix,
"Density of attributes": density_of_each_attr,
"Profiling of Dataset": html_profiling,
"Mortality Prediction": predict,
"Models used": info_About_models,
"About Team: Bit By Bit": about_this_project,
}
st.markdown(
"""
<style>
.sidebar .sidebar-content {
background-color: #008B8B;
color: white;
}
</style>
""",
unsafe_allow_html=True,
)
st.sidebar.image('images/liver-care.png', width=210)
st.sidebar.title('Hepatitis Analysis ')
selection = st.sidebar.radio("CONTENTS: ", list(PAGES.keys()))
page = PAGES[selection]
page.app()