答案 0 :(得分:3)
快速又肮脏(我想说方法的名称是不言自明的,不是吗?)
ax = plt.gca()
ylabels = ax.get_ylabels()
for ylabel in ylabels: ylabel.set_text('+'+ylabel.get_text())
ax.set_ylabels(ylabels)
多一点洁食
import matplotlib.ticker as ticker
...
fig, ax = plt.subplots()
ax.yaxis.set_major_formatter(ticker.FormatStrFormatter("%+g"))
plt.plot(...)
...
第二部分已使用https://matplotlib.org/gallery/ticks_and_spines/tick-formatters.html作为参考。
附录
OP在一条评论中问“ ...…我该怎么做才能避免在0之前加+号?” 。
可能的解决方案是
...
bare0 = lambda y, pos: ('%+g' if y>0 else '%g')%y
ax.yaxis.set_major_formatter(ticker.FuncFormatter(bare0))
...
有关详细信息,请参见https://matplotlib.org/api/ticker_api.html#matplotlib.ticker.FuncFormatter。
答案 1 :(得分:-1)
也许是这样吗?
plt.yticks(np.arange(6), ('0', '+1', '+2', '+3', '+4', '+5'))