Rozeeeee commited on
Commit
24be641
·
verified ·
1 Parent(s): 7ea6464

Update app.py

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