iT邦幫忙

2024 iThome 鐵人賽

DAY 26
0

我發現我可能完成不了自我挑戰,我還在用統計報告

Create horizontal box plots for each column in the dataset and save them

for column in df.columns:
plt.figure(figsize=(6, 4))
# Plot horizontal boxplot
plt.boxplot(df[column], vert=False)
plt.title(f'Horizontal Box Plot: {column}')
plt.xlabel('Value')
plt.ylabel(column)
plt.tight_layout()
# Save the plot
save_path = os.path.join(boxplot_directory, f'horizontal_boxplot_{column}.png')
plt.savefig(save_path)
plt.close()

Confirmation message

boxplot_directory


上一篇
A2德語證照我來了-DAY24
下一篇
A2德語證照我來了-DAY27
系列文
A2德語證照我來了30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言