Matplotlib を使用して Python でグループ化棒グラフを作成するために提供されたコードにエラーが含まれています。具体的には、w の値が正しくなく、自動ラベルを使用した注釈の配置がずれています。
修正された w 値:
代わりに w の値は 0.8 / 3 である必要があります。
グループ化された棒グラフをプロットするより簡単な方法は、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 サイトの他の関連記事を参照してください。