カウントデータ(100個)があり、それぞれがビン(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()