Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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("
|
| 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.")
|