pandas.Series.plot.hist或pandas.Series.plot中没有范围参数。 但是下面的代码有效。如何运作?
#wnba is Dataframe, so wnba['PTS'] is series.
wnba['PTS'].plot.hist(range = (1,600), bins = 3)
答案 0 :(得分:0)
plot.hist
需要**kwds
,因此,尽管您使用任何关键字args对其进行了调用,但语法正确。
语义上:
hist
通过传递 self
参数kind='hist'
self.__call__
,plot_series
通过ax
方法建立_get_ax_layer
层_plot
与此ax
一起调用,并使用kind='hist'
自变量range
矮人耐心地跟随面包屑。