6

我在 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

4

3 回答 3

9

如果我没听错,你可以试试:

plt.xlabel('position %d' % entries, fontproperties=font_manager.FontProperties(size=10))
于 2012-05-03T23:43:42.287 回答
2

这就是你可以在 python 3.6 中做的事情。

plt.xlabel('Your variable is put here: {}'.format(variable))

于 2018-05-15T03:33:17.123 回答
1

你可以试试这个。它对我有用。

plt.xlabel('position'+str(entries), fontproperties=font_manager.FontProperties(size=10))

我在我的代码中使用它作为

plt.plot(qtime,hy_p,'r.')
plt.xlabel('Time')
plt.ylabel('Hz at node '+str(50))
于 2014-01-03T13:22:54.897 回答