绘制横向条形图:
plt.barh(x,y,height=0.2,color=red,label=第一天)
#x,y为横纵坐标数据,height设置条形图的宽度,color设置条形图颜色,label设置条形图图列
绘制三条条形图的代码示例如下:
from matplotlib import pyplot as plt
from matplotlib import font_manager
#调用中文字体
my_font = font_manager.FontProperties(fname = C:/WINDOWS/Fonts/STSONG.TTF)
#设置图形大小
plt.fi
1