Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -45,7 +45,9 @@ year_options = sorted(df["year"].dropna().unique())
|
|
45 |
|
46 |
selected_countries = st.sidebar.multiselect("Select Country/Countries", country_options)
|
47 |
selected_years = st.sidebar.multiselect("Select Year(s)", year_options)
|
48 |
-
keyword = st.sidebar.text_input(
|
|
|
|
|
49 |
group_by_question = st.sidebar.checkbox("Group by Question Text")
|
50 |
|
51 |
# Apply filters
|
|
|
45 |
|
46 |
selected_countries = st.sidebar.multiselect("Select Country/Countries", country_options)
|
47 |
selected_years = st.sidebar.multiselect("Select Year(s)", year_options)
|
48 |
+
keyword = st.sidebar.text_input(
|
49 |
+
"Keyword Search (matches Question OR Answer)", ""
|
50 |
+
) #NEW
|
51 |
group_by_question = st.sidebar.checkbox("Group by Question Text")
|
52 |
|
53 |
# Apply filters
|