Spaces:
Sleeping
Sleeping
Update dashboard.py
Browse files- dashboard.py +3 -3
dashboard.py
CHANGED
@@ -111,7 +111,7 @@ def filter_triples(rel):
|
|
111 |
# https://tabler-icons.io/
|
112 |
button1 = pn.widgets.Button(name="Introduction", button_type="warning", icon="file-info", styles={"width": "100%"})
|
113 |
button2 = pn.widgets.Button(name="Entity/Relation Types:", button_type="warning", icon="chart-histogram", styles={"width": "100%"})
|
114 |
-
button3 = pn.widgets.Button(name="Top Entities", button_type="warning", icon="chart-bar", styles={"width": "100%"})
|
115 |
button4 = pn.widgets.Button(name="Causal Relation Chord Diagrams", button_type="warning", icon="chart-dots-filled", styles={"width": "100%"})
|
116 |
|
117 |
|
@@ -157,10 +157,10 @@ The causal relations represented in the KG are defined by the **MIMICause** sche
|
|
157 |
## Entities/Relation Types
|
158 |
Bar plots of the Entity and Relation type counts.
|
159 |
|
160 |
-
## Top Key Entities
|
161 |
Bar plots representing the occurence counts of the top 30 Entities in the KG, where occurrence means the entity is either the Subject or Object of an extracted triple in the KG.
|
162 |
|
163 |
-
##
|
164 |
Entity Chord Diagrams represent the most frequently connected entity pairs within the KG through chord illustrations, serving as both Subjects and Objects of predicative triples. The size of the chords corresponds to the support of the depicted relations.
|
165 |
""", width=800), align="center")
|
166 |
|
|
|
111 |
# https://tabler-icons.io/
|
112 |
button1 = pn.widgets.Button(name="Introduction", button_type="warning", icon="file-info", styles={"width": "100%"})
|
113 |
button2 = pn.widgets.Button(name="Entity/Relation Types:", button_type="warning", icon="chart-histogram", styles={"width": "100%"})
|
114 |
+
button3 = pn.widgets.Button(name="Top Key Entities", button_type="warning", icon="chart-bar", styles={"width": "100%"})
|
115 |
button4 = pn.widgets.Button(name="Causal Relation Chord Diagrams", button_type="warning", icon="chart-dots-filled", styles={"width": "100%"})
|
116 |
|
117 |
|
|
|
157 |
## Entities/Relation Types
|
158 |
Bar plots of the Entity and Relation type counts.
|
159 |
|
160 |
+
## Top Key Entities
|
161 |
Bar plots representing the occurence counts of the top 30 Entities in the KG, where occurrence means the entity is either the Subject or Object of an extracted triple in the KG.
|
162 |
|
163 |
+
## Causal Relations Chord Diagrams
|
164 |
Entity Chord Diagrams represent the most frequently connected entity pairs within the KG through chord illustrations, serving as both Subjects and Objects of predicative triples. The size of the chords corresponds to the support of the depicted relations.
|
165 |
""", width=800), align="center")
|
166 |
|