Rozeeeee commited on
Commit
7ea6464
·
verified ·
1 Parent(s): 18eb184

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -89,6 +89,9 @@ combined_df = pd.concat(dfs, ignore_index=True).fillna(0) # 合併數據並填
89
  # **再次填充 NaN 值**
90
  combined_df = combined_df.fillna(0)
91
 
 
 
 
92
  # **Streamlit UI**
93
  st.title("📊 台灣企業 ESG 數據分析")
94
 
 
89
  # **再次填充 NaN 值**
90
  combined_df = combined_df.fillna(0)
91
 
92
+ # **只顯示前300筆數據**
93
+ combined_df = combined_df.head(300)
94
+
95
  # **Streamlit UI**
96
  st.title("📊 台灣企業 ESG 數據分析")
97