想要胖的错误吧

时间:2010-02-07 00:28:53

标签: python matplotlib plot

这是我使用matplotlib制作的plot。它使用bar中的scatterpylab方法。 我有3个问题:

如何让错误栏变得更胖?我可以看到bar中没有API。 如何正确指定轴? 如何阻止x轴标签显示?

第一个是最重要的,因为我不知道。我想还有一件事,如何在SO中显示图像?我已经看到它已经完成但不知道如何。

以下是代码:

import numpy as np
from pylab import *

data1 = np.linspace(12,22,7)
data2 = np.random.normal(loc=15,scale=5,size=10)
data3 = [11,12,18,19,20,26,27]
data = [data1,np.abs(data2),data3]

# n = number of groups
def layout(n,r=7):
    s = r**2   # r = radius of each data point
    #layout from 1 to 100
    margin = 5
    spacer = 10
    group_width = (100 - 2*margin - (n-1)*spacer)*1.0/n
    dot_width = r
    bar_width = group_width - dot_width
    current = margin
    rL = list()
    for i in range(n):
        rL.append(current)        # x for point
        rL.append(current + 3)    # x for bar
        current += group_width + spacer
    return s, bar_width, rL   

s, w, xlocs = layout(len(data))
for group in data:
    x = xlocs.pop(0)
    for e in group:
        scatter(x,e,s=s,color='k')
    m = np.mean(group)
    e = np.std(group)
    x = xlocs.pop(0)
    o = bar(x,m,width=w,color='0.6',
        yerr=e, ecolor='k')

show()

alt text http://img210.imageshack.us/img210/8503/screenshot20100206at703.png

2 个答案:

答案 0 :(得分:4)

使用bar方法中的errorbar方法绘制误差线。它接受elinewidth参数但看起来不像你可以通过bar方法调用传递它。我只是手动绘制它们。

o, = bar(x,m,width=w,color='0.6', yerr=None) # note the comma after the o
eBarX = o.get_x()+o.get_width()/2.0
eBarY = o.get_height()
errorbar(eBarX,eBarY,e,capsize=7,elinewidth=6,ecolor='k')

要关闭XAxis,请在调用show:

之前使用此功能
axes().xaxis.set_visible(False)

这些更改使您的情节看起来像这样: alt text http://img690.imageshack.us/img690/5141/testfs.png

答案 1 :(得分:0)

或者,为了获得更多的错误条,您可以传递" elinewidth"通过" bar" -method如下:

o = bar(x,m,width=w,color='0.6', error_kw={"elinewidth":5}, yerr=e)