Move tougher analytical questions higher in the list
Browse files- Move the 4 harder questions to positions 11-14 so they're visible in the first 15
- Questions now visible:
* Which station records highest variability in PM2.5?
* Calculate pollution improvement rate year-over-year by city
* Identify cities with PM2.5 levels consistently above 50 μg/m³ for >6 months
* Find correlation between PM2.5 and PM10 across different seasons and cities
- These should now appear in the sidebar instead of being cut off
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
app.py
CHANGED
@@ -599,14 +599,14 @@ with st.sidebar:
|
|
599 |
"Which areas exceed WHO guidelines?",
|
600 |
"What are peak pollution hours?",
|
601 |
"Show PM10 vs PM2.5 comparison",
|
602 |
-
"Compare weekday vs weekend levels",
|
603 |
-
"Plot yearly trend analysis",
|
604 |
-
"Show pollution distribution by city",
|
605 |
-
"Create correlation plot between pollutants",
|
606 |
"Which station records highest variability in PM2.5?",
|
607 |
"Calculate pollution improvement rate year-over-year by city",
|
608 |
"Identify cities with PM2.5 levels consistently above 50 μg/m³ for >6 months",
|
609 |
-
"Find correlation between PM2.5 and PM10 across different seasons and cities"
|
|
|
|
|
|
|
|
|
610 |
]
|
611 |
|
612 |
# Quick query buttons in sidebar
|
|
|
599 |
"Which areas exceed WHO guidelines?",
|
600 |
"What are peak pollution hours?",
|
601 |
"Show PM10 vs PM2.5 comparison",
|
|
|
|
|
|
|
|
|
602 |
"Which station records highest variability in PM2.5?",
|
603 |
"Calculate pollution improvement rate year-over-year by city",
|
604 |
"Identify cities with PM2.5 levels consistently above 50 μg/m³ for >6 months",
|
605 |
+
"Find correlation between PM2.5 and PM10 across different seasons and cities",
|
606 |
+
"Compare weekday vs weekend levels",
|
607 |
+
"Plot yearly trend analysis",
|
608 |
+
"Show pollution distribution by city",
|
609 |
+
"Create correlation plot between pollutants"
|
610 |
]
|
611 |
|
612 |
# Quick query buttons in sidebar
|