leavoigt commited on
Commit
ee173d8
1 Parent(s): 19dfa6f

Update appStore/vulnerability_analysis.py

Browse files
Files changed (1) hide show
  1. appStore/vulnerability_analysis.py +13 -4
appStore/vulnerability_analysis.py CHANGED
@@ -97,13 +97,22 @@ def vulnerability_display():
97
  num_paragraphs = len(df['Vulnerability Label'])
98
  num_references = len(df_filtered['Group(s)'])
99
 
100
- st.markdown(f"""<div style="text-align: justify;"> The document contains a
101
  total of <span style="color: red;">{num_paragraphs}</span> paragraphs.
102
  We identified <span style="color: red;">{num_references}</span>
103
  references to groups in vulnerable situations.</div>
104
  <br>
105
- In the chart on the right you can see how often each group has been referenced.
106
- For a more detailed view in the text, see the paragraphs and
 
 
 
 
 
 
 
 
 
107
  their respective labels in the table below.</div>""", unsafe_allow_html=True)
108
 
109
 
@@ -132,7 +141,7 @@ def vulnerability_display():
132
 
133
  # Exclude the "Other" group and all groups that do not have a label
134
  df_bar_chart = df_label_count[df_label_count['Label'] != 'Other']
135
- df_bar_chart = df_label_count[df_label_count['Count'] != 0]
136
 
137
  # Bar chart
138
  fig = go.Figure()
 
97
  num_paragraphs = len(df['Vulnerability Label'])
98
  num_references = len(df_filtered['Group(s)'])
99
 
100
+ st.markdown(f"""<div style="text-align: justify;">The document contains a
101
  total of <span style="color: red;">{num_paragraphs}</span> paragraphs.
102
  We identified <span style="color: red;">{num_references}</span>
103
  references to groups in vulnerable situations.</div>
104
  <br>
105
+ <div style="text-align: justify;">We are searching for references related
106
+ to the following groups: (1) Agricultural communities, (2) Children, (3)
107
+ Ethnic, racial and other minorities, (4) Fishery communities, (5) Informal sector
108
+ workers, (6) Members of indigenous and local communities, (7) Migrants and
109
+ displaced persons, (8) Older persons, (9) Persons living in poverty, (10)
110
+ Persons living with disabilities, (11) Persons with pre-existing health conditions,
111
+ (12) Residents of drought-prone regions, (13) Rural populations, (14) Sexual
112
+ minorities (LGBTQI+), (15) Urban populations, (16) Women and other genders.</div>
113
+ <br>
114
+ <div style="text-align: justify;">In the chart on the right you can see how often
115
+ each group has been referenced. For a more detailed view in the text, see the paragraphs and
116
  their respective labels in the table below.</div>""", unsafe_allow_html=True)
117
 
118
 
 
141
 
142
  # Exclude the "Other" group and all groups that do not have a label
143
  df_bar_chart = df_label_count[df_label_count['Label'] != 'Other']
144
+ df_bar_chart = df_bar_chart[df_bar_chart['Count'] != 0]
145
 
146
  # Bar chart
147
  fig = go.Figure()