matplotlib colorbar交替顶部底部标签

时间:2016-05-11 11:17:27

标签: python matplotlib labels colorbar

首先,这是一个自我回答的问题,因为我相信它在某些情况下会有所帮助,例如:在this post中,作者试图隐藏所有其他标签以避免文字重叠,另一种方法可能是替换标签位置,以便保留所有标签并避免重叠(如果没有&#39) ; ta疯狂的标签数量)以及这篇文章旨在解决的问题:

如何使用交替的顶部和底部标签制作matplotlib colorbar?

2 个答案:

答案 0 :(得分:1)

跳转到一个简单的工作示例:

import numpy
import matplotlib.pyplot as plt

#------------------Get some data------------------
X = numpy.arange(100)
Y = numpy.arange(100)
Z = numpy.arange(100**2).reshape((100,100))

levels=numpy.arange(0,100**2,1000)
ltop=levels[::2]           # labels appear on top
lbot=levels[1:][::2]       # labels appear at bottom

#-----------------------Plot-----------------------
f = plt.figure()
ax = f.gca()

cf = ax.contourf(X,Y,Z,100)
cbar=plt.colorbar(cf,orientation='horizontal',ticks=lbot,drawedges=True)

vmin=cbar.norm.vmin
vmax=cbar.norm.vmax

#-------------Print bottom tick labels-------------
cbar.ax.set_xticklabels(lbot)

#--------------Print top tick labels--------------
for ii in ltop:
    cbar.ax.text((ii-vmin)/(vmax-vmin), 1.5, str(ii), transform=cbar.ax.transAxes, va='bottom', ha='center')

plt.show(block=False)

基本上,底部标签使用默认方法cbar.ax.set_xticklabels(lbot)绘制。对于热门标签,我使用cbar.ax.text()手动添加了它们。

情节如下: colorbar with top and bottom labels

编辑:重要更新我的回答:

当颜色条有扩展/溢出时,相关端使用三角形表示值溢出。在这种情况下,顶行刻度标签需要进行一些调整才能与色条部分正确对齐。

默认情况下,三角形尺寸为色条轴的5%,用于获得正确的偏移和缩放以对齐标签。

请参阅下面的示例,该示例已在两端进行了扩展。使用我以前的方法,结果如下所示:

enter image description here

顶行的2个末端数字与三角形的尖端对齐。如果只有一端延伸并且轮廓水平的数量很大(> = 10左右),则不对准将变得更糟。

更正后的情节: enter image description here

这是生成正确情节的代码:

import numpy
import matplotlib.pyplot as plt

#------------------Get some data------------------
X = numpy.linspace(-1,1,100)
Y = numpy.linspace(-1,1,100)
X,Y=numpy.meshgrid(X,Y)
Z=numpy.sin(X**2)

levels=numpy.linspace(-0.8,0.8,9)

ltop=levels[::2]           # labels appear on top
lbot=levels[1:][::2]       # labels appear at bottom

#-----------------------Plot-----------------------
f = plt.figure()
ax = f.gca()

cf = ax.contourf(X,Y,Z,levels,extend='both')
cbar=plt.colorbar(cf,orientation='horizontal',ticks=lbot,drawedges=True)

#------------Compute top tick label locations------------
vmin=cbar.norm.vmin
vmax=cbar.norm.vmax

if cbar.extend=='min':
    shift_l=0.05
    scaling=0.95
elif cbar.extend=='max':
    shift_l=0.
    scaling=0.95
elif cbar.extend=='both':
    shift_l=0.05
    scaling=0.9
else:
    shift_l=0.
    scaling=1.0

#-------------Print bottom tick labels-------------
cbar.ax.set_xticklabels(lbot)

#--------------Print top tick labels--------------
for ii in ltop:
    cbar.ax.text(shift_l + scaling*(ii-vmin)/(vmax-vmin),
        1.5, str(ii), transform=cbar.ax.transAxes,
        va='bottom', ha='center')

plt.show(block=False)

答案 1 :(得分:0)

你可以添加一个双轴对象并设置每个奇数刻度,同时设置原始轴上的每个偶数刻度。

import numpy as np
import matplotlib.pyplot as plt

# Make the plot
fig, ax = plt.subplots(1,1, figsize=(5,5))
fig.subplots_adjust(bottom=0.2)
## Trick to have the colorbar of the same size as the plot
box = ax.get_position() 
cax = fig.add_axes([box.xmin, box.ymin - 0.1, box.width, 0.03])
m = ax.matshow(np.random.random(100).reshape(10,10), aspect="auto") # Don't forget auto or the size of the heatmap will change.
cb = plt.colorbar(m, cax=cax, orientation="horizontal")

# Add twin axes 
cax2 = cax.twiny()

# get current positions and values of the ticks.
# OR you can skip this part and set your own ticks instead.
xt = cax.get_xticks()
xtl = [i.get_text() for i in cax.get_xticklabels()]

# set odd ticks on top (twin axe)
cax2.set_xticks(xt[1::2])
cax2.set_xticklabels(xtl[1::2])
# set even ticks on  original axes (note the different object : cb != cax)
cb.set_ticks(xt[::2])
cb.set_ticklabels(xtl[::2])

colorbar with label top bottom

HTH