Data Visualization with Matplotlib

6 / 20

Getting Stared with Matplotlib - Introduction to Pyplot

Here we will learn more about Pyplot, and how it is associated to Matplotlib.

INSTRUCTIONS

Pyplot is a module of Matplotlib which provides simple functions to add plot elements like lines, images, text, etc. to the current axes in the current figure. To try Pyplot, you need to import the pyplot module using the import function.

  • Please import the pyplot module from Matplotlib:

    import matplotlib.<< your code goes here >> as plt
    
Get Hint See Answer


Note - Having trouble with the assessment engine? Follow the steps listed here

Loading comments...