本文主要是介绍matplotlib.pyplot.bar的使用——绘制堆叠柱状图,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
参考官网:matplotlib.pyplot.bar
matplotlib.pyplot.bar(x, height, width=0.8, bottom=None, *, align=‘center’, data=None, **kwargs)
x:要显示的x轴的数据序列。
height:要显示的y轴的数据序列。
使用bar绘制堆叠的柱状图
代码如下:
# TODO: 画出device_conn_type和CTR相关的histogram, 参考问题6的效果图。
# import matplotlib.ticker as ticker
x = sorted(list(data_df['device_conn_type'].unique()))
y_0 = []
y_1 = []
for i in x:length =
这篇关于matplotlib.pyplot.bar的使用——绘制堆叠柱状图的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!