我有计数数据(其中 100 个),每个对应一个 bin(0 到 99)。我需要将这些数据绘制为直方图。但是,直方图会计算这些数据并且无法正确绘制,因为我的数据已经被分箱了。
import random
import matplotlib.pyplot as plt
x = random.sample(range(1000), 100)
xbins = [0, len(x)]
#plt.hist(x, bins=xbins, color = 'blue')
#Does not make the histogram correct. It counts the occurances of the individual counts.
plt.plot(x)
#plot works but I need this in histogram format
plt.show()