1

我正在使用这样的条形图 http://matplotlib.org/examples/pylab_examples/barchart_demo2.html

我想改变条形的外观,例如给条形一些三维外观。我想到的是这样的: http: //tinyurl.com/oczlafw

只是,我不知道从哪里开始。也许沿条重复相同的图像?

感谢AC的帮助

4

1 回答 1

4

Matplotlib 用户列表上的这篇文章展示了如何在条形图中使用颜色渐变。这可能与您想要的相似。下面我将它改编为单杠。你也可以看看这个在条形图中使用图像的例子。

from pylab import figure, show, np, cm, hold

def gbar(ax, x, y, height=0.5, left=0):
    X = [[.7, .7],[.6,.6]]
    for right,bottom in zip(x, y):
        top = bottom+height
        print bottom
        print top
        print ''
        ax.imshow(X, interpolation='bicubic', cmap=cm.Blues,
                    extent=(left, right, bottom, top), alpha=1)

fig = figure()

xmin, xmax = xlim = 0,10
ymin, ymax = ylim = 0,1
ax = fig.add_subplot(111, xlim=xlim, ylim=ylim,
                        autoscale_on=False)
hold(True)
X = [[.6, .6],[.7,.7]]

N = 10
y = np.arange(N)+0.25
x = 10*np.random.rand(N)
gbar(ax, x, y)
ax.set_aspect('normal')
ax.set_ylim([0,10])
show()

带有渐变颜色的水平条形图

于 2013-10-28T18:05:15.693 回答