1

我正在尝试制作一个等高线图,其等高线水平由值的对数缩放。但是,颜色条在颜色旁边没有显示足够的值。这是一个简单的例子。

import numpy as N
import matplotlib as M
import matplotlib.pyplot as PLT

# Set up a simple function to plot 
values = N.empty((10,10))
for xi in range(10):
    for yi in range(10):
        values[xi,yi] = N.exp(xi*yi/10. - 1)

levels = N.logspace(-1, 4, 10)
log_norm = M.colors.LogNorm() 
# Currently not used - linear scaling
linear_norm = M.colors.Normalize()

# Plot the function using the indices as the x and y axes
PLT.contourf(values, norm=log_norm, levels=levels)
PLT.colorbar()

如果您在 contourf 调用中将 log_norm 切换为 linear_norm,您会看到颜色条确实有值。当然,使用 linear_norm 意味着颜色是线性缩放的,并且该函数的轮廓分布不均匀。

我在 Mac OS 10.7 上使用 python 2.7.2,matplotlib 附带的 enthought 版本。

4

1 回答 1

5

在调用中添加格式PLT.colorbar

import numpy as N
import matplotlib as M
import matplotlib.pyplot as PLT

# Set up a simple function to plot 
x,y = N.meshgrid(range(10),range(10))
values = N.exp(x*y/10. - 1)

levels = N.logspace(-1, 4, 10)
log_norm = M.colors.LogNorm() 
# Currently not used - linear scaling
linear_norm = M.colors.Normalize()
# Plot the function using the indices as the x and y axes
PLT.contourf(values, norm=log_norm, levels=levels)
PLT.colorbar(format='%.2f')
PLT.show()

在此处输入图像描述

于 2011-12-08T21:47:29.340 回答