Spaces:
Sleeping
Sleeping
Roberta2024
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -8,6 +8,8 @@ import io
|
|
8 |
import time
|
9 |
from sklearn.cluster import KMeans
|
10 |
from sklearn.preprocessing import StandardScaler
|
|
|
|
|
11 |
|
12 |
# 確保正確的中文字符編碼
|
13 |
st.set_page_config(page_title="🌳台灣中小企業ESG數據分析與揭露儀表板🌲", page_icon=":chart_with_upwards_trend:", layout="wide")
|
@@ -28,6 +30,15 @@ def load_data(url):
|
|
28 |
df = df.fillna(0)
|
29 |
return df
|
30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
# Streamlit 應用程式
|
32 |
st.title("台灣企業ESG數據分析與揭露")
|
33 |
st.subheader("以溫室氣體 X 再生能源 X 董事會資訊: https://www.tejwin.com/insight/carbon-footprint-verification/")
|
@@ -84,6 +95,9 @@ if st.button("生成圖表"):
|
|
84 |
margin=dict(t=50, b=50, l=50, r=50)
|
85 |
)
|
86 |
st.plotly_chart(fig_pie, use_container_width=True)
|
|
|
|
|
|
|
87 |
|
88 |
with tab2:
|
89 |
# 使用 plotly 創建長條圖
|
@@ -104,6 +118,9 @@ if st.button("生成圖表"):
|
|
104 |
height=600
|
105 |
)
|
106 |
st.plotly_chart(fig_bar, use_container_width=True)
|
|
|
|
|
|
|
107 |
|
108 |
with tab3:
|
109 |
# 對所有數據集執行K-means分析
|
@@ -140,6 +157,9 @@ if st.button("生成圖表"):
|
|
140 |
title=f"{dataset_choice}數據的K-means聚類 ({cluster_features[0]} vs {cluster_features[1]})"
|
141 |
)
|
142 |
st.plotly_chart(fig_scatter, use_container_width=True)
|
|
|
|
|
|
|
143 |
|
144 |
# 顯示每個聚類的特徵
|
145 |
st.subheader("聚類特徵")
|
@@ -149,7 +169,7 @@ if st.button("生成圖表"):
|
|
149 |
else:
|
150 |
st.warning("請至少選擇兩個特徵進行聚類分析。")
|
151 |
|
152 |
-
st.success("
|
153 |
|
154 |
# 下載並設置自定義字體以顯示中文字符
|
155 |
font_url = "https://drive.google.com/uc?id=1eGAsTN1HBpJAkeVM57_C7ccp7hbgSz3_&export=download"
|
|
|
8 |
import time
|
9 |
from sklearn.cluster import KMeans
|
10 |
from sklearn.preprocessing import StandardScaler
|
11 |
+
import base64
|
12 |
+
from io import BytesIO
|
13 |
|
14 |
# 確保正確的中文字符編碼
|
15 |
st.set_page_config(page_title="🌳台灣中小企業ESG數據分析與揭露儀表板🌲", page_icon=":chart_with_upwards_trend:", layout="wide")
|
|
|
30 |
df = df.fillna(0)
|
31 |
return df
|
32 |
|
33 |
+
# 函數:將圖表轉換為可下載的連結
|
34 |
+
def get_image_download_link(fig, filename, text):
|
35 |
+
buf = BytesIO()
|
36 |
+
fig.write_image(buf, format="png")
|
37 |
+
buf.seek(0)
|
38 |
+
b64 = base64.b64encode(buf.read()).decode()
|
39 |
+
href = f'<a href="data:image/png;base64,{b64}" download="{filename}">{text}</a>'
|
40 |
+
return href
|
41 |
+
|
42 |
# Streamlit 應用程式
|
43 |
st.title("台灣企業ESG數據分析與揭露")
|
44 |
st.subheader("以溫室氣體 X 再生能源 X 董事會資訊: https://www.tejwin.com/insight/carbon-footprint-verification/")
|
|
|
95 |
margin=dict(t=50, b=50, l=50, r=50)
|
96 |
)
|
97 |
st.plotly_chart(fig_pie, use_container_width=True)
|
98 |
+
|
99 |
+
# 添加下載按鈕
|
100 |
+
st.markdown(get_image_download_link(fig_pie, "pie_chart.png", "下載圓餅圖"), unsafe_allow_html=True)
|
101 |
|
102 |
with tab2:
|
103 |
# 使用 plotly 創建長條圖
|
|
|
118 |
height=600
|
119 |
)
|
120 |
st.plotly_chart(fig_bar, use_container_width=True)
|
121 |
+
|
122 |
+
# 添加下載按鈕
|
123 |
+
st.markdown(get_image_download_link(fig_bar, "bar_chart.png", "下載長條圖"), unsafe_allow_html=True)
|
124 |
|
125 |
with tab3:
|
126 |
# 對所有數據集執行K-means分析
|
|
|
157 |
title=f"{dataset_choice}數據的K-means聚類 ({cluster_features[0]} vs {cluster_features[1]})"
|
158 |
)
|
159 |
st.plotly_chart(fig_scatter, use_container_width=True)
|
160 |
+
|
161 |
+
# 添加下載按鈕
|
162 |
+
st.markdown(get_image_download_link(fig_scatter, "kmeans_scatter.png", "下載K-means散點圖"), unsafe_allow_html=True)
|
163 |
|
164 |
# 顯示每個聚類的特徵
|
165 |
st.subheader("聚類特徵")
|
|
|
169 |
else:
|
170 |
st.warning("請至少選擇兩個特徵進行聚類分析。")
|
171 |
|
172 |
+
st.success("圖表生成完成!您可以使用下載按鈕保存圖表,然後列印。")
|
173 |
|
174 |
# 下載並設置自定義字體以顯示中文字符
|
175 |
font_url = "https://drive.google.com/uc?id=1eGAsTN1HBpJAkeVM57_C7ccp7hbgSz3_&export=download"
|