Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -189,20 +189,23 @@ class SurveyAnalyzer:
|
|
| 189 |
|
| 190 |
# 🎨 Streamlit UI
|
| 191 |
def main():
|
| 192 |
-
# 設置頁面配置
|
| 193 |
st.set_page_config(
|
| 194 |
-
page_title="114年度樂齡學習數位示範體驗場域 服務滿意度調查分析報告",
|
| 195 |
-
page_icon="📊",
|
| 196 |
layout="wide"
|
| 197 |
)
|
| 198 |
|
| 199 |
-
# 添加
|
| 200 |
st.markdown("""
|
| 201 |
# 114年度樂齡學習數位示範體驗場域 服務滿意度調查分析報告
|
|
|
|
| 202 |
|
| 203 |
-
|
|
|
|
| 204 |
|
| 205 |
-
###
|
|
|
|
| 206 |
""")
|
| 207 |
|
| 208 |
# 分隔線
|
|
@@ -261,5 +264,14 @@ def main():
|
|
| 261 |
st.header("🟠 性別分佈")
|
| 262 |
analyzer.plot_gender_distribution(df, selected_venues, selected_month)
|
| 263 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 264 |
if __name__ == "__main__":
|
| 265 |
main()
|
|
|
|
| 189 |
|
| 190 |
# 🎨 Streamlit UI
|
| 191 |
def main():
|
| 192 |
+
# 設置頁面配置
|
| 193 |
st.set_page_config(
|
| 194 |
+
page_title="114年度樂齡學習數位示範體驗場域 服務滿意度調查分析報告",
|
| 195 |
+
page_icon="📊",
|
| 196 |
layout="wide"
|
| 197 |
)
|
| 198 |
|
| 199 |
+
# 添加標題和子標題
|
| 200 |
st.markdown("""
|
| 201 |
# 114年度樂齡學習數位示範體驗場域 服務滿意度調查分析報告
|
| 202 |
+
## 全面理解樂齡學習者數位服務體驗
|
| 203 |
|
| 204 |
+
本報告提供全面的問卷調查分析與視覺化圖表,深入剖析樂齡學習者參與數位示範場域服務的滿意情形。
|
| 205 |
+
透過詳細的統計分析和互動式圖表,我們旨在呈現樂齡學習者的服務體驗和需求洞察。
|
| 206 |
|
| 207 |
+
### 報告製作單位
|
| 208 |
+
**國立中正大學高齡教育研究中心專案管理團隊**
|
| 209 |
""")
|
| 210 |
|
| 211 |
# 分隔線
|
|
|
|
| 264 |
st.header("🟠 性別分佈")
|
| 265 |
analyzer.plot_gender_distribution(df, selected_venues, selected_month)
|
| 266 |
|
| 267 |
+
# 報告說明
|
| 268 |
+
st.markdown("---")
|
| 269 |
+
st.markdown("""
|
| 270 |
+
### 報告說明
|
| 271 |
+
- **數據來源**:114年度樂齡學習數位示範體驗場域調查問卷
|
| 272 |
+
- **分析目的**:評估樂齡學習者對數位示範場域服務的滿意度
|
| 273 |
+
- **報告解讀**:本報告提供服務滿意度的客觀量化指標,旨在協助改進服務品質
|
| 274 |
+
""")
|
| 275 |
+
|
| 276 |
if __name__ == "__main__":
|
| 277 |
main()
|