简体   繁体   English

如何在 matplotlib 上获得科学计数法的乘数字符串

[英]How to get multiplier string of scientific notation on matplotlib

I'm trying to get the text in the offset of the scientific notation of matplotlib, but get_offset() or get_offset_text() returns an empty string.我试图在 matplotlib 的科学计数法的偏移量中获取文本,但get_offset()get_offset_text()返回一个空字符串。 I have checked these questions, but they didn't work:我检查了这些问题,但没有奏效:

How to move the y axis scale factor to the position next to the y axis label? 如何将y轴比例因子移动到y轴label旁边的position?

Adjust exponent text after setting scientific limits on matplotlib axis 在 matplotlib 轴上设置科学限制后调整指数文本

prevent scientific notation in matplotlib.pyplot 防止 matplotlib.pyplot 中的科学记数法

Here is a simple example:这是一个简单的例子:

import matplotlib.pyplot as plt
from matplotlib.ticker import ScalarFormatter
import numpy as np

x = np.arange(1,20)
y = np.exp(x)

fig,ax = plt.subplots(1,1)

ax.plot(x,y)

ax.yaxis.set_major_formatter(ScalarFormatter(useMathText=True)) 

print(ax.yaxis.get_offset_text())
print(ax.yaxis.get_major_formatter().get_offset())

fmt = ax.yaxis.get_major_formatter()
offset = ax.yaxis.get_major_formatter().get_offset()
print(offset)


plt.show()

That generates:这会产生: 在此处输入图像描述

I'd like to get the x10^8 , but it returns only:我想得到x10^8 ,但它只返回:

Text(0, 0.5, '')


The same happens if I don't use the ScalarFormatter.如果我不使用 ScalarFormatter,也会发生同样的情况。 Am I missing something?我错过了什么吗? Is there a separate function to get the multiplier (instead of the offset)?是否有单独的 function 来获得乘数(而不是偏移量)?

edit: I'm currently using Python 3.9.0 with matplotlib 3.4.2 on a MacBook Pro, and I just run python3 test.py .编辑:我目前在 MacBook Pro 上使用Python 3.9.0matplotlib 3.4.2 ,我只是运行python3 test.py

edit2: I have installed Python 3.9.5 , and the solution with fig.canvas.draw() still does not work.编辑2 我已经安装了Python 3.9.5fig.canvas.draw()的解决方案仍然不起作用。 The same with Linux works. Linux 的工作原理相同。

edit3: The problem happens when using the MacOSX backend. edit3:使用MacOSX后端时会出现问题。 When changing to TkAgg or Agg , the get_offset works with the provided solution.当更改为TkAggAgg时, get_offset 与提供的解决方案一起使用。

You first need to draw the figure for the object to not hold some default values.您首先需要为 object 绘制图形以不保留一些默认值。 From the source code on FigureCanvasBase.draw :FigureCanvasBase.draw上的源代码:

"""
Render the `.Figure`.
It is important that this method actually walk the artist tree
even if not output is produced because this will trigger
deferred work (like computing limits auto-limits and tick
values) that users may want access to before saving to disk.
"""

Simply call fig.canvas.draw() and then ax.yaxis.get_offset_text() will have the updated values you want.只需调用fig.canvas.draw()然后ax.yaxis.get_offset_text()将获得您想要的更新值。

x = np.arange(1, 20)
y = np.exp(x)

fig, ax = plt.subplots(1, 1)
ax.plot(x, y)
ax.yaxis.set_major_formatter(ScalarFormatter(useMathText=True))

fig.canvas.draw()
         
offset = ax.yaxis.get_major_formatter().get_offset()
print(offset)
# $\times\mathdefault{10^{8}}\mathdefault{}$

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM