gigiliu12 commited on
Commit
fad7dca
·
verified ·
1 Parent(s): cca0254

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
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("Keyword Search", "")
 
 
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