matplotlib柱狀圖、面積圖、直方圖、散點圖、極座標圖、箱型圖

一、柱狀圖 1.通過obj.plot() 柱狀圖用bar表示,可通過obj.plot(kind='bar')或者obj.plot.bar()生成;在柱狀圖中添加參數stacked=True,會形成堆疊圖。 fig,axes = plt.subplots(2,2,figsize=(10,6)) s = pd.Series(np.random.randint(0,10,15),index = list
相關文章
相關標籤/搜索