如果我有一个子图,我怎么能改变它的滴答数?我不知道数据的最大值和最小值。
我的代码是:
azal = rif.add_subplot(111)
azal.plot(eels*(10**9), averspe, label='data')
azal.plot(eels*(10**9), beck, label='fit')
azal.set_yscale('log')
azal.set_xscale('log')
h2 = azal.axvline(x = p2*(10**9), color='r')
azal.legend(bbox_to_anchor=(1.05, 1), loc=4, fontsize='xx-large', borderaxespad=0.)
rif.canvas.draw()
答案 0 :(得分:3)
您可以使用matplotlib.ticker.MaxNLocator
自动选择最大N
个间距很大的刻度线。
下面仅针对y轴给出玩具示例,您可以将ax.yaxis.set_major_locator
替换为ax.xaxis.set_major_locator
,将其用于x轴。
如果您有一个日志图,那么您可以将matplotlib.ticker.LogLocator
与numticks
关键字参数一起使用。在这种情况下,您可以使用yticks
替换定义yticks = ticker.LogLocator(numticks=M)
的行。
import matplotlib.pyplot as plt
from matplotlib import ticker
import numpy as np
N = 10
x = np.arange(N)
y = np.random.randn(N)
fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot(x,y)
# Create your ticker object with M ticks
M = 3
yticks = ticker.MaxNLocator(M)
# Set the yaxis major locator using your ticker object. You can also choose the minor
# tick positions with set_minor_locator.
ax.yaxis.set_major_locator(yticks)
plt.show()
`