web-dev-qa-db-ja.com

matplotlib円グラフでラベルとautopctの重複を回避するにはどうすればよいですか?

私のPythonコードは:

values = [234, 64, 54,10, 0, 1, 0, 9, 2, 1, 7, 7]
months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
          'Jul','Aug','Sep','Oct', 'Nov','Dec']

colors = ['yellowgreen', 'red', 'gold', 'lightskyblue', 
          'white','lightcoral','blue','pink', 'darkgreen', 
          'yellow','grey','Violet','Magenta','cyan']

plt.pie(values, labels=labels, autopct='%1.1f%%', shadow=True, 
        colors=colors, startangle=90, radius=1.2)

plt.show()

「Jan」、「Feb」、「Mar」などのラベルとパーセンテージを表示することは可能ですか?

  • 重複せずに、または
  • arrow mark

piechart

19
user123

あるいは、円グラフの横に凡例を置くことができます:

import matplotlib.pyplot as plt
import numpy as np

x = np.char.array(['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct', 'Nov','Dec'])
y = np.array([234, 64, 54,10, 0, 1, 0, 9, 2, 1, 7, 7])
colors = ['yellowgreen','red','gold','lightskyblue','white','lightcoral','blue','pink', 'darkgreen','yellow','grey','Violet','Magenta','cyan']
porcent = 100.*y/y.sum()

patches, texts = plt.pie(y, colors=colors, startangle=90, radius=1.2)
labels = ['{0} - {1:1.2f} %'.format(i,j) for i,j in Zip(x, porcent)]

sort_legend = True
if sort_legend:
    patches, labels, dummy =  Zip(*sorted(Zip(patches, labels, y),
                                          key=lambda x: x[2],
                                          reverse=True))

plt.legend(patches, labels, loc='left center', bbox_to_anchor=(-0.1, 1.),
           fontsize=8)

plt.savefig('piechart.png', bbox_inches='tight')

enter image description here


編集:凡例を元の順序で保持したい場合は、コメントで述べたように、sort_legend=False上記のコードでは、次のようになります。

enter image description here

31

Tightlayoutを試してください。

plt.tight_layout()

コードの最後に。少し重なるのを防ぐかもしれません。

0
real_aravind