Update app.py
Browse files
app.py
CHANGED
@@ -174,13 +174,14 @@ with st.sidebar:
|
|
174 |
# Dropdown selectbox
|
175 |
country = st.sidebar.multiselect('Filter by country:', country_options)
|
176 |
vulnerabilities_cat = st.sidebar.multiselect('Filter by vulnerabilities category:', vulnerability_options)
|
177 |
-
st.
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
|
|
184 |
|
185 |
with st.container():
|
186 |
st.markdown("<h2 style='text-align: center;'> Climate Policy Documents: Vulnerabilities Analysis Q&A </h2>", unsafe_allow_html=True)
|
@@ -203,6 +204,8 @@ with st.expander("ℹ️ - About this app", expanded=False):
|
|
203 |
|
204 |
Make sure your filters match the countries you have specified for the analysis!
|
205 |
""")
|
|
|
|
|
206 |
|
207 |
|
208 |
|
|
|
174 |
# Dropdown selectbox
|
175 |
country = st.sidebar.multiselect('Filter by country:', country_options)
|
176 |
vulnerabilities_cat = st.sidebar.multiselect('Filter by vulnerabilities category:', vulnerability_options)
|
177 |
+
with st.expander("ℹ️ - About filters", expanded=False):
|
178 |
+
st.markdown(
|
179 |
+
"""
|
180 |
+
* *These selections will filter the data matched against your query*
|
181 |
+
* *For a comparative analysis of multiple countries or vulnerability categories, select the items you require or select **'All Categories'***
|
182 |
+
* *Be careful in using the vulnerabilities category filter, as many of the categories are not well represented in the documents. Therefore, this will severly limit the data available for analysis*
|
183 |
+
"""
|
184 |
+
)
|
185 |
|
186 |
with st.container():
|
187 |
st.markdown("<h2 style='text-align: center;'> Climate Policy Documents: Vulnerabilities Analysis Q&A </h2>", unsafe_allow_html=True)
|
|
|
204 |
|
205 |
Make sure your filters match the countries you have specified for the analysis!
|
206 |
""")
|
207 |
+
st.write(country)
|
208 |
+
st.write(vulnerabilities_cat)
|
209 |
|
210 |
|
211 |
|