使用图标题

时间:2018-03-28 17:41:09

标签: python matplotlib

enter image description here

我需要在我的图标题中包含我的百分比错误。

plt.title('Percentage error= %.3f' %(error))

这是我使用的代码。在错误发生后,这不会产生%符号。如何更改此代码,使其看起来像图片中的代码。我已经尝试过搞乱它,但我一直在弄错格式和错误。

1 个答案:

答案 0 :(得分:0)

plt.title('Percentage error= %.3f' %(error))

应该成为

plt.title('Percentage error= %.3f%%' %(error))