标签: matplotlib
我想用ln(y)轴和ln(ln(x))轴绘图。
到目前为止,我一直在使用pyplot.yscale('log',basey=numpy.e)和pyplot.xscale('log',basex=numpy.e)在ln比例尺上作图,但是我还没有找到将其扩展到ln ln比例尺的方法。
pyplot.yscale('log',basey=numpy.e)
pyplot.xscale('log',basex=numpy.e)
这怎么办?