series.plot.bar pandas dataframe series自带的画图函数

dataframe/series自带了一些画图函数,比如series.plot.bar可以快速对某个字段画柱状图。

一般用法形如这样,我们一般是关心每个categorical level的频率

np.round(df['income'].value_counts(dropna=False).sort_index()/df.shape[0],2).plot.bar()

除了bar,还有box/hist/line/pie等等


留言

熱門文章