Rozeeeee commited on
Commit
38a9d25
·
verified ·
1 Parent(s): 9618e1c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -96,6 +96,9 @@ combined_df = pd.concat(dfs, ignore_index=True).fillna(0) # 合併數據並填
96
  # **再次填充 NaN 值**
97
  combined_df = combined_df.fillna(0)
98
 
 
 
 
99
  # **Streamlit UI**
100
  st.title("📊 台灣企業 ESG 數據分析")
101
 
 
96
  # **再次填充 NaN 值**
97
  combined_df = combined_df.fillna(0)
98
 
99
+ # **檢查欄位名稱**
100
+ st.write("數據欄位名稱:", combined_df.columns)
101
+
102
  # **Streamlit UI**
103
  st.title("📊 台灣企業 ESG 數據分析")
104