最佳答案
假设我有一些输入数据:
data = np.random.normal(loc=100,scale=10,size=(500,1,32))
hist = np.ones((32,20)) # initialise hist
for z in range(32):
hist[z],edges = np.histogram(data[:,0,z],bins=np.arange(80,122,2))
我可以使用 imshow()
绘制它:
plt.imshow(hist,cmap='Reds')
获得:
但是,x 轴值与输入数据不匹配(即平均值为100,范围从80到122)。因此,我想更改 x 轴以显示 edges
中的值。
我试过了:
ax = plt.gca()
ax.set_xlabel([80,122]) # range of values in edges
...
# this shifts the plot so that nothing is visible
还有
ax.set_xticklabels(edges)
...
# this labels the axis but does not centre around the mean:
对于如何更改轴值以反映我正在使用的输入数据,有什么想法吗?