Ich habe Zähldaten (eine 100 von ihnen), jeder entspricht einem Fach (0 bis 99). Ich muss diese Daten als Histogramm darstellen. Das Histogramm zählt diese Daten jedoch und wird nicht korrekt dargestellt, da meine Daten bereits gruppiert sind.Python Plot einfaches Histogramm gegeben Binned Daten
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()
Sie könnten den Code in dieser [Antwort] verwenden (http://stackoverflow.com/a/37559471/2087463) oder diese [Antwort] (http://stackoverflow.com/a/37548733/2087463) als Beispiel für die Darstellung bereits klassierter Daten als Histogramme. – tmthydvnprt