ホームページ  >  記事  >  バックエンド開発  >  Matplotlib と Pandas を使用して、正しい間隔と正確な注釈を備えたグループ化棒グラフを作成するにはどうすればよいですか?

Matplotlib と Pandas を使用して、正しい間隔と正確な注釈を備えたグループ化棒グラフを作成するにはどうすればよいですか?

Susan Sarandon
Susan Sarandonオリジナル
2024-11-03 12:23:291039ブラウズ

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 である必要があります。

プロットに 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 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。