gigiliu12 commited on
Commit
ee57380
ยท
verified ยท
1 Parent(s): d3a33c8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -3,8 +3,8 @@ import streamlit as st
3
  import pandas as pd
4
 
5
  df = pd.read_csv("dummy_data.csv")
6
-
7
- st.title("๐ŸŒ CGD Survey Explorer (PoC)")
8
 
9
  st.sidebar.header("๐Ÿ”Ž Filter Questions")
10
  selected_country = st.sidebar.selectbox("Select Country", sorted(df["Country"].unique()))
@@ -22,7 +22,8 @@ st.dataframe(filtered[["Variable", "Question", "Responses"]])
22
 
23
  if filtered.empty:
24
  st.info("No matching questions found.")
25
-
 
26
  import streamlit as st
27
  st.title("โœ… Hello from Streamlit!")
28
  st.write("This is a test to confirm the app runs.")
 
3
  import pandas as pd
4
 
5
  df = pd.read_csv("dummy_data.csv")
6
+ # UI layout
7
+ st.title(" CGD Survey Explorer (PoC)")
8
 
9
  st.sidebar.header("๐Ÿ”Ž Filter Questions")
10
  selected_country = st.sidebar.selectbox("Select Country", sorted(df["Country"].unique()))
 
22
 
23
  if filtered.empty:
24
  st.info("No matching questions found.")
25
+
26
+ # this is jut me testing if streamlit works
27
  import streamlit as st
28
  st.title("โœ… Hello from Streamlit!")
29
  st.write("This is a test to confirm the app runs.")