Matplot
MatplotLib - What and Why?
Bar Chart
import matplotlib.pyplot as plt
names = ['first', 'second', 'third']
values = [3, 1, 6]
plt.bar(names, values)
plt.show()Line Graph
Scatter Graph
Formatting
Last updated
Was this helpful?