Ploting Bargraph dengan value_counts (dengan judul x dan y label dan sudut nama)

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