2014-11-08 77 views
1

一個是與柱狀圖圖例調用,如:傳說花式的傳說花式的細微差別

axHistogram.legend(loc='upper left', prop={'family':'serif', 'size':'x-small'}, frameon=False) 

我們有盒子,而不是線條。

此外,在分散的傳奇造型,我們有三個點的偏移:

axHistogram.legend(loc='upper left', prop={'family':'serif', 'size':'x-small'}, frameon=False) 

這裏是什麼,我指的是圖像:

enter image description here

如何樣式,這些使我有線而不是盒子,只有一個點而不是三個偏移量?

回答

2

您可以使用proxy artists創造你想要的圖例項,例如從你的電話中刪除label=關鍵字hist,並且這樣做,

axHistogram.plot(np.NaN, np.NaN, label='AGN', color='b', linewidth=1) 

然後,當你創建你的傳說中的條目將被一條線而不是一個盒子。

您可以使用輸入選項numpointsscatterpoints來控制圖例中的點數。

+1

聰明。散點圖例如何? – 2014-11-08 15:54:44

+2

對'axHistogram.legend'使用'scatterpoints = 1'輸入選項。 – farenorth 2014-11-08 16:42:23

+1

它已經在*答案*中。 – farenorth 2014-11-09 00:28:50