提供的使用 Matplotlib 在 Python 中建立分組長條圖的程式碼包含錯誤。具體來說,w 的值不正確,且使用自動標籤的註釋位置未對齊。
更正的 w 值:
w 的值應改為 0.8 / 3 0.8,以確保條形之間有適當的間距。
繪製分組長條圖的更直接方法是使用 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中文網其他相關文章!