如何使用 Matplotlib 和 Pandas 建立具有正確間距和準確註釋的分組長條圖?

Susan Sarandon
發布: 2024-11-03 12:23:29
原創
1044 人瀏覽過

How to create a grouped bar chart with correct spacing and accurate annotations using Matplotlib and Pandas?

繪製與註解分組長條圖

錯誤分析

提供的使用 Matplotlib 在 Python 中建立分組長條圖的程式碼包含錯誤。具體來說,w 的值不正確,且使用自動標籤的註釋位置未對齊。

更正的 w 值:

w 的值應改為 0.8 / 3 0.8,以確保條形之間有適當的間距。

使用 Pandas 繪圖

繪製分組長條圖的更直接方法是使用 pandas DataFrames 的繪圖方法。此方法可以輕鬆進行繪圖和註釋。

改進的註解放置

要準確地將註解放置在條形上方,請使用以下程式碼:

for p in ax.patches:
    ax.annotate(f'{p.get_height():0.2f}', (p.get_x() + p.get_width() / 2., p.get_height()), ha = 'center', va = 'center', xytext = (0, 10), textcoords = 'offset points')
登入後複製

這裡是偏移量將點設定為(0, 10),將註釋對齊在條形中心正上方。

完整程式碼

修正與改良的程式碼如下:

import pandas as pd
import matplotlib.pyplot as plt

df = pandas.DataFrame({
    'Very interested': [1332, 1688, 429, 1340, 1263, 1629],
    'Somewhat interested': [729, 444, 1081, 734, 770, 477],
    'Not interested': [127, 60, 610, 102, 136, 74]
    }, index=['Big Data (Spark / Hadoop)', 'Data Analysis / Statistics', 'Data Journalism', 'Data Visualization', 'Deep Learning', 'Machine Learning'])

colors = ['#5cb85c', '#5bc0de', '#d9534f']
fig, ax = plt.subplots(figsize=(20, 8))

ax.set_ylabel('Percentage', fontsize=14)
ax.set_title(
    "The percentage of the respondents' interest in the different data science Area",
    fontsize=16)
ax.set_xticklabels(ax.get_xticklabels(), rotation=0)

df.plot.bar(ax=ax, color=colors)

for p in ax.patches:
    ax.annotate(f'{p.get_height():0.2f}', (p.get_x() + p.get_width() / 2., p.get_height()), ha='center', va='center', xytext=(0, 10), textcoords='offset points')

plt.show()
登入後複製

以上是如何使用 Matplotlib 和 Pandas 建立具有正確間距和準確註釋的分組長條圖?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板