Matplotlib直方图错误

时间:2014-03-18 02:00:04

标签: python matplotlib histogram list-comprehension

mu = a number
sigma = a number
x = [some ints]
num_bins = [int(mu + sigma*x) for x in range(-5,6)]

plt.hist(x, bins = num_bins)

返回TypeError:' int'对象没有属性' getitem '

我做错了什么?

1 个答案:

答案 0 :(得分:2)

你使用x作为列表理解中的自由变量,它" stomped"上一行的另一个x