作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试在 matplotlib 中绘制曲面图,但我无法使 z 轴的格式看起来不错。我希望它采用科学记数法,轴上有前缀,轴上有指数(就像你通常在 matlab 中得到的那样)。目前我只能得到没有科学记数法的值(前面有一个逗号和五个零),或者我得到的是前缀而不是指数......
尝试 1:(给出科学记数法,但不给出指数)
from matplotlib import ticker
ax = fig.gca(projection='3d')
ax.plot_surface(X, Y, Z, rstride=3, cstride=3)
formatter = ticker.ScalarFormatter()
formatter.set_scientific(True)
formatter.set_powerlimits((-2,2))
ax.w_zaxis.set_major_formatter(formatter)
尝试 2:(给出十进制形式的值,与默认输出相同)
from matplotlib import ticker
ax = fig.gca(projection='3d')
ax.plot_surface(X, Y, Z, rstride=3, cstride=3)
ax.ticklabel_format(axis="z", style="sci", scilimits=(0,0))
我在这里做错了什么?
最佳答案
当您创建 ScalarFormatter
时,尝试使用“使用数学文本”参数:
from matplotlib import ticker
niceMathTextForm = ticker.ScalarFormatter(useMathText=True)
ax.w_zaxis.set_major_formatter(niceMathTextForm)
关于python - mplot3d 中的 z 轴格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6596583/
有没有办法更改颜色图在 mplot3d 曲面图中绑定(bind)的值? 例如,我试图表示物体的表面温度: import matplotlib.pyplot as plt import numpy as
我正在使用 mPlot 函数将 morris javascript 库与 R 统计包链接起来。如何使用此功能的示例如下: https://github.com/ramnathv/rCharts/tre
我是一名优秀的程序员,十分优秀!