作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
最佳答案
快速而肮脏(我想说方法的名称是不言自明的,不是吗?)
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了解详情。
关于python - matplotlib 中的正号刻度标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57003343/
我是一名优秀的程序员,十分优秀!