我在 Python3.2 中生成堆积条形图并使用“Matplotlib”模块“pyplot”。唯一的问题是,在“xlabel”中,我必须包含一个变量(整数)来表示分析的条目数。我已经尝试了很多,但找不到将变量包含在 xlabel 中的方法。
我的部分代码:
plt.ylabel('Percentage', fontproperties=font_manager.FontProperties(size=10))
plt.xlabel('position', fontproperties=font_manager.FontProperties(size=10))
plt.title("'Graph-A",fontproperties=font_manager.FontProperties(size=10))
plt.xticks(np.arange(22), np.arange(1,23), fontproperties=font_manager.FontProperties(size=8))
plt.yticks(np.arange(0,121,5), fontproperties=font_manager.FontProperties(size=8))
plt.legend((p1[0], p2[0], p3[0], p4[0],p5[0]), ('A','B','C','D','E'), loc=1, prop=font_manager.FontProperties(size=7))
变量“条目”保存已处理条目的值,我需要将此值包含在 xlabel 中。请帮忙?
AK