绘制小数字,显示为“n”、“p”或“f”

问题描述 投票:0回答:2

我正在使用plotly绘制一些数据(小数字),我看到奇怪的格式,例如

78.98p
576.65n
678.76f

这些 F 是什么? :( 没有任何地方解释这些是什么。

如何将它们变成带有 E 的科学记数法?

plotly plotly.js plotly-python
2个回答
3
投票

看到这个https://plot.ly/python/reference/#parcoords-line-colorbar-exponentformat

exponentformat ( enumerated : "none" | "e" | "E" | "power" | "SI" | "B" ) 
default: "B" 
Determines a formatting rule for the tick exponents. For example, consider the number 1,000,000,000. If "none", it appears as 1,000,000,000. If "e", 1e+9. If "E", 1E+9. If "power", 1x10^9 (with 9 in a super script). If "SI", 1G. If "B", 1B.

0
投票

您没有提供代码示例,但总的来说

fig.update_yaxes(exponentformat = 'E')

应该是您要寻找的内容(y 轴上的值)。

© www.soinside.com 2019 - 2024. All rights reserved.