我正在使用matplotlib进行绘图。代码如下(zvals具有值)
cmap = mpl.colors.ListedColormap(['darkblue', 'blue', 'lightblue','lightgreen','yellow','gold','orange','darkorange','orangered','red'])
bounds=[0, 10,20,30,40,50,60,70,80,100,200,1000]
norm = mpl.colors.BoundaryNorm(bounds, cmap.N)
img2 = plt.imshow(zvals,interpolation='nearest',
cmap = cmap,
norm=norm,
origin='lower')
xlocations = na.array(range(30)) + 0.5
xticks(xlocations, [str(x+1) for x in arange(30)], rotation=0, size=5)
gca().xaxis.set_ticks_position('none')
gca().yaxis.set_ticks_position('none')
grid(True)
这导致如下图: http://imageshack.us/a/img145/7325/histogrammoverview.png
我想将xticks(1,2,3,..)的标签向左移动一点,因此它们位于相应的颜色框下方。相应地,我还想将yticks(user1和user2)的标签向下移动一点,以便正确显示它们。怎么办呢?
编辑:事实上,我可以更改以下行 xlocations = na.array(范围(30))+ 0.5 至 xlocations = na.array(范围(30))然后生成的图片是这样的: http://imageshack.us/a/img338/7325/histogrammoverview.png
请注意网格正在“穿过”彩色框,这不是我想要的。我希望网格边缘彩色框,如上图所示。虽然标签(1,2,3,...)正确放置在方框下方,但在此版本中。我怎样才能正确放置标签(在彩色框下面)和一个围绕彩色框而不是通过彩色框中间的网格。
解
此解决方案有效(如答案所示):
periods = 30
xlocations = na.array(range(periods))
xminorlocations = na.array(range(periods))+0.5
xticks(xlocations, [str(x+1) for x in arange(periods)], rotation=0, size=5)
plt.set_xticks(xminorlocations, minor=True)
grid(True, which='minor', linestyle='-')
结果:hxxp://imageshack.us/a/img9/7325/histogrammoverview.png
答案 0 :(得分:2)
我认为你可以通过
来管理它使用
只能在次要刻度中显示网格plt.grid(True, which='minor')
我也会将线条样式设置为'-'
。