【问题标题】:Graphing standard deviations on a Gaussian using Matplotlib使用 Matplotlib 在高斯上绘制标准差
【发布时间】:2014-01-13 16:39:32
【问题描述】:

我正在尝试在 matplotlib 图上绘制标准差,类似于 http://en.wikipedia.org/wiki/File:Standard_deviation_diagram.svg

到目前为止,我已经设法绘制了曲线:

mean = 0
variance = 1
rng = 4.
sigma = sqrt(variance)
x = np.linspace(-rng, rng, (rng * 10) * 2)
plt.plot(x, normpdf(x, mean, sigma))
plt.ylim(0, (rng / 10) + 0.05)

但我很难将此 R 函数重写为 Python:

polysection <- function(a, b, col, n=11){
    dx <- seq(a, b, length.out=n)
    polygon(c(a, dx, b), c(0, dnorm(dx), 0), col=col, border=NA)
    # draw a white vertical line on "inside" side to separate each section
    segments(a, 0, a, dnorm(a), col="white")
}

# Build the four left and right portions of this bell curve
for(i in 0:3){
    polysection(   i, i+1,  col=cols[i+1]) # Right side of 0
    polysection(-i-1,  -i,  col=cols[i+1]) # Left right of 0
}

到目前为止,我得到了这个:

cols = np.array(["#2171B5", "#6BAED6", "#BDD7E7", "#EFF3FF"])

def polysection(a, b, col, n=11):
    dx = np.linspace(a, b, n)
    ax.add_patch(plt.Polygon(
            np.hstack((np.array(a), dx, np.array(b))),
            np.hstack((np.array(0), normpdf(dx, 0, 1), np.array(0)))))
    plt.plot(
        [a, 0],
        [a, normpdf(a, 0, 1)],
        color='blue')

for i in xrange(4):
    polysection(i, i+1, col=cols[i + 1]) 
    polysection(-i - 1, -i, col=cols[i + 1])

但是我得到的Polygon() 调用中的坐标不知何故有误:

ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()

【问题讨论】:

    标签: python r matplotlib statistics


    【解决方案1】:

    问题是plt.Polygon 的参数应该是二维元组的列表,所以试试这个:

    xs = list(np.hstack((np.array(a), dx, np.array(b))))
    ys = list(np.hstack((np.array(0), mlab.normpdf(dx, 0, 1), np.array(0))))
    xy = zip(xs,ys)
    ax.add_patch(plt.Polygon(xy))
    

    【讨论】:

      猜你喜欢
      • 2019-08-14
      • 2014-05-06
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2018-10-08
      相关资源
      最近更新 更多