Python Tutorials · Python Matplotlib

Matplotlib Pyplot

Learn all about Matplotlib Pyplot in this comprehensive tutorial.

5 min read intermediate
  • Most of the Matplotlib utilities lies under the pyplot submodule, and are usually imported under the plt alias:

Pyplot

Most of the Matplotlib utilities lies under the pyplot submodule, and are usually imported under the plt alias:

python

Now the Pyplot package can be referred to as plt.

python
Note: You will learn more about drawing (plotting) in the next chapters.