我偶然发现这个线程试图做同样的事情,即在正向和负向绘制大范围的值。此外,我希望有一个与 imshow 一样精细的粒度。
事实证明,您可以使用“ticker.MaxNLocator(nbins)”来实现,其中可以将 nbins 设置为高以具有精细的粒度,例如将 nbins 设置为 100。
我还想要一个很好的 Latex 风格的股票行情格式,不久前我在 StackOverflow 上找到了一个解决方案。
我将在此处从它所属的一个类中发布此代码片段,以便任何可能想要的人都可以了解它的工作原理。我使用此解决方案生成多个图,如下图所示。
import matplotlib.pyplot as plt
import matplotlib.ticker as ticker
# function for nice Latex style tick formatting
# copied from
# http://stackoverflow.com/questions/25983218/
# scientific-notation-colorbar-in-matplotlib
# output formating for colorbar in 2D plots
def fmt(x, pos):
a, b = '{:.2e}'.format(x).split('e')
b = int(b)
return r'${} \times 10^{{{}}}$'.format(a, b)
# A confourf function I use inside one of my classes
# mainly interesting are the "plot" and "cbar" lines
def Make2DSubPlot(self, posIdent, timeIdx,typeIdx):
plt.subplot(posIdent)
y = self.radPos
x = self.axPos
z = self.fieldList[timeIdx][typeIdx]
plot = plt.contourf(x, y, z, locator=ticker.MaxNLocator(100), \
aspect='auto',origin='lower')
cbar = plt.colorbar(plot, orientation='vertical', \
format=ticker.FuncFormatter(fmt))
cbar.ax.set_ylabel(self.labelList[typeIdx])
plt.xlabel(self.labelList[self.iax])
plt.ylabel(self.labelList[self.iax])