Plotting Bargraph mit Value_Counts (mit Titel X und Y -Etikett und Namenswinkel)

data_1.Manufactorer.value_counts(ascending = False).plot(kind = 'bar')
plt.title("Manufacturers")
plt.ylabel("Count")
plt.xlabel("Manufacturer")
plt.xticks(rotation=45)# 45 degree rotation for name..
plt.tight_layout()
plt.show()
Helpful Hare