更改子图上的刻度数

时间:2014-12-11 15:07:56

标签: python matplotlib axis-labels

如果我有一个子图,我怎么能改变它的滴答数?我不知道数据的最大值和最小值。

我的代码是:

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()                

1 个答案:

答案 0 :(得分:3)

您可以使用matplotlib.ticker.MaxNLocator自动选择最大N个间距很大的刻度线。

下面仅针对y轴给出玩具示例,您可以将ax.yaxis.set_major_locator替换为ax.xaxis.set_major_locator,将其用于x轴。

如果您有一个日志图,那么您可以将matplotlib.ticker.LogLocatornumticks关键字参数一起使用。在这种情况下,您可以使用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()

Example plot `