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 '
我做错了什么?
答案 0 :(得分:2)
你使用x
作为列表理解中的自由变量,它" stomped"上一行的另一个x
。