Introduction to Matplotlib
What is Matplotlib?
Matplotlib is one of the most popular libraries used for creating static visualizations in Python.
python
import matplotlib.pyplot as plt
x = [1,2,3]
y = [4,5,6]
plt.plot(x,y)
plt.show()
Next Tutorial: Line Charts

