给定一个matplotlib的轴,我该如何找到其当前的最小和最大限制?例如,在ax.set(xscale ='log',xlim = ...)中可能已经设定了这些限制。
matplotlib
ax.set(xscale ='log',xlim = ...)
xmin,xmax = ax.get_xlim()
ymin,ymax = ax.get_ylim()