我正在尝试在 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))
我在这里做错了什么?