2
我試圖讓圖例中的標籤左對齊並且值右對齊。在下面的代碼中,我嘗試過格式化方法,但是這些值沒有正確對齊。matplotlib中的圖例對齊
任何暗示/建議,非常感謝。
import matplotlib.pyplot as pl
# make a square figure and axes
pl.figure(1, figsize=(6,6))
labels = 'FrogsWithTail', 'FrogsWithoutTail', 'DogsWithTail', 'DogsWithoutTail'
fracs = [12113,8937,45190, 10]
explode=(0, 0.05, 0, 0)
pl.pie(fracs, explode=explode, labels=labels, autopct='%1.1f%%', shadow=True)
pl.title('Raining Hogs and Dogs', bbox={'facecolor':'0.8', 'pad':5})
legends = ['{:<10}-{:>8,d}'.format(labels[idx], fracs[idx]) for idx in range(len(labels))]
pl.legend(legends, loc=1)
pl.show()
謝謝,這確實神奇。我確實爲標籤指定了更大的寬度,但最終粘貼了舊版本的代碼。設置'等寬'屬性做了這項工作。再次感謝@drs。 – neon