How to Create Vertical and Horizontal Bar Graph in Matplotlib

Machine Learning courses with 100+ Real-time projects Start Now!!

Program 1

import matplotlib.pyplot as mat
x=[2018,2019,2020,2021,2022]
y=[4000,3000,6000,5000,1500]
mycolor=['red','green','black','blue','yellow']
mat.bar(x,y,width=0.2,color=mycolor)
#mat.barh(x,y,height=0.2,color=mycolor)
mat.title("Product Details(5 Year)")
mat.xlabel("Year")
mat.ylabel("Frooti (Product")
mat.show()

 

Did you know we work 24x7 to provide you best tutorials
Please encourage us - write a review on Google

courses

TechVidvan Team

TechVidvan Team provides high-quality content & courses on AI, ML, Data Science, Data Engineering, Data Analytics, programming, Python, DSA, Android, Flutter, full stack web dev, MERN, and many latest technology.

Leave a Reply

Your email address will not be published. Required fields are marked *