Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的目标是生成如下图:
我需要的是获得一组注释,然后将这些注释正确对齐到绘图上。我怎样才能做到这一点?文本应该一直到 y 轴之前。
一种方法是使用 fig.text()。您可以执行以下操作:
fig = plt.figure() fig.text(0.8,0.5,'Your text here',size='small',ha='right')
数字是图形上文本的 x,y 坐标,范围从 0 到 1。“ha”代表水平对齐。
另一种方法是创建一个辅助 y 轴,然后使用 ylabels() 在该轴上设置自定义刻度标签。