Blog_Banner_Asset
    Homebreadcumb forward arrow iconBlogbreadcumb forward arrow iconData Sciencebreadcumb forward arrow iconMatplotlib in Python: Explained Various Plots with Examples

Matplotlib in Python: Explained Various Plots with Examples

Last updated:
21st Jun, 2021
Views
Read Time
12 Mins
share image icon
In this article
Chevron in toc
View All
Matplotlib in Python: Explained Various Plots with Examples

What is matplotlib?

Out of the several libraries available in Python, matplotlib in python is one such visualization library that helps in the visualization of 2D plots of an array. The data visualization library is built on NumPy arrays. It was in the year 2002, that the multi-platform data visualization library was introduced by John Hunter. The library offers visualization of data and the graphical plotting of the data providing an alternative to MATLAB. Matplotlib’s APIs i.e. Application Programming Interfaces which are used by the developers to embed plots in GUI applications. 

Several graphical plots like bar, line, histogram, scatter, etc. are offered by matplotlib. The visualization offered by the matplotlib plot allows access to huge amounts of data visually. The visual data plot can be generated through a code of few lines only due to the structured nature of a python matplotlib script.

Two APIs are used for overlaying the matplotlib scripting layer:

  • Python API: It is a hierarchy of python code objects.
  • OO (Object Oriented) API: A direct access to the backend layers of Matplotlib is provided by the API. 

Check out our data science online courses to upskill yourself

Installation

The installation of the matplotlib library can be done through downloading of matplotlib and its dependencies from the Python Package Index (PyPI) as a binary package.

The command that can be used for installing the library is

python -m pip install matplotlib

In an operating system like Windows, Linux, and macOS, matplotlib and its dependencies are present as wheel packages. In such cases the command to be executed is.

python -mpip install -U matplotlib

The library is also available as uncompiled source files whose installation is fairly complex as the local system will require having the appropriate compiler for the OS. Also, the ActiveState Platform may be used for building matplotlib from source and package it for the required OS.

Importing

The importing of the matplotlib in python is carried out through the commands

  • from matplotlib import pyplot as plt
  • import matplotlib.pyplot as plt

Various Plots and Examples

1. Matplotlib UI Menu

The Matplotlib UI Menu is generated when plots are created through the Matplotlib. Customization of the plot and toggling of elements along with the ability to zoom into the plots are offered by the Matplotlib UI.

2. Matplotlib and NumPy

The NumPy is a package under python for carrying out scientific computations. Matplotlib is built over the NumPy and it uses the functions provided by NumPy for its numerical data and multi-dimensional arrays.

3. Matplotlib and Pandas

Pandas is a library of python that is used for the manipulation of data and analysis by matplotlib. It is not a required dependency for the matplotlib but provides a data frame.

Matplotlib plots allow the visual representation of  huge volumes of data. With the plots, the trends and specific patterns present in data could be identified which is essential for making correlations. Matplotlib Plots basically provide a way for reasoning about quantitative information.

Some of the types of matplotlib plots are:

1. Line plot:

Using two points

  • The Matplotlib Line Plot is generated through importing pyplot.
  • For drawing points in a diagram the plot() function is used which by default draws a line from one point to another.
  • Two parameters are taken into account that specify the points for drawing the line.
  • X-axis points are stored as array in Parameter 1. 
  • Y-axis points are stored as array in Parameter 2.
  • Example: If a line has to be plotted from points (2, 6), to (10, 15), then two arrays have to be passed i.e. [2, 10], and [6, 15].

 

Example: A code showing the plotting of lines and the generated plot

Source

2. Using Multiple Points

  • Like the way two points are used for plotting, multiple points are allowed to be plotted using matplotlib in python.
  • The points should be in the same number in both the axes for plotting a number of points.
  • Input: 

Source

Explore our Popular Data Science Online Courses

3. Line points without x axis points

  • If X-axis points are not specified, then default values for X-axis are taken based on the Y-axis points.
  • Input: The code will remain the same like the above codes for plotting lines but with only one array as input, i.e. an array for the Y-axis. The X-axis will be taken as default.

ypoints = np.array([10, 8, 12, 20, 3, 9])

  • Plot generated:

Various options are present in the matplotlib that allows increasing the visual effects of the plots:

1. Markers

  • To enhance the visual effects of the points in a diagram, a specified marker can be used using the keyword marker.
  • The markers can be a star, Circle, Point, Pixel, X, etc.
  • Example: plt.plot(ypoints, marker = ‘o’) can be used for plotting points
  • The other lists of markers are shown in the below snippet taken from

Source

Top Data Science Skills to Learn to upskill

  • The marker can be changed according to color (140 supported colors), size, and the type of line that can be used like dotted, solid, or dashed line.
  • markeredge (mec) and markerfacecolor (mfc) commands are used to color the entire marker. 
  • It offers the option of coloring only the edge of the marker or the whole marker.
  • Markersize or in short ms is used for setting the size of the marker.

Syntax:  plt.plot(ypoints, marker = ‘o’, ms = 30)

2. Matplotlib Line 

  • The style of the plotted line can be changed accordingly with the options of linestyle, dotted, or dashed represented as ls, :, or .

Syntax: plt.plot(ypoints, ls = ‘:’)

  • The color of the line can be changed accordingly with the keyword color or in a shorter form using c. matplotlib provides 140 supported colors for changing the color appearance of the line.
  • The width of the line can be changed with the argument linewidth or lw. It is a floating number in points. 
  • Multiple lines can be plotted in the same graph using plt.plot() functions.
  • grid() function is used for adding grid lines into the plot. Axis parameters can be added to specify in which axis the grid line is required.

Syntax: plt.grid(axis = ‘x’)

  • Properties of the grid can be changed accordingly like color, style of line and width through the arguments, color, linestyles, and number.

Syntax: plt.grid(color = ‘green’, linestyle = ‘–‘, linewidth = 0.5)

3. Matplotlib Labels and titles

  • xlabel() and ylabel() functions are used for labeling the respective asex.
  • title() function is used for setting up a title for the plot.
  • Font properties of the plot can be changed with the fontdict parameter.
  • The loc parameter can be used to specify the position of the title.

Multiple plots can be drawn in one figure using the subplots() function. 

Read our popular Data Science Articles

4. Matplotlib Scatter Plot

  • The scatter() function can be used with pyplot to draw a scatter plot.
  • Two arrays of the same length are required, i.e. one array for each axis.
  • Example:

Source

Plot generated

  • color or the c argument is used to color the points in the scatter plot. 
  • Colormap can be used to specify the required color in the scatterplot. Each color in the colormap has a specific value. It can be included through the argument cmap nd then assigning the name of the colormap. Several in=built colormaps are available in matplotlib.

       Syntax: plt.scatter(x, y, c=colors, cmap=’viridis’)

       Viridis is an in-built colormap available in matplotlib. 

  • Size and transparency of the dots can be changed through the s and the alpha argument. 
  • The colormap can be combined with different sizes of the dots.

5. Matplotlib Bar diagrams

 

  • bar() function are used for drawing the bar diagrams. The arguments for the layout of the bars are mentioned in the bar() function. It plots vertical bar diagrams.

 

  • For plotting horizontal bar diagrams the barh() function is used.
  • Input: 

 

  • Plot generated: 

Source

  • The color argument is used with the bar() and barh() function to set the bar colors.

Syntax: plt.bar(x, y, color = “green”).

  • The width argument is used with the bar() and barh() function to set the bar width.

Syntax: plt.bar(x, y, width = 0.2).

  • Another argument taken up by the bar() and barh() function is height which is used to set the bar height.

upGrad’s Exclusive Data Science Webinar for you –

Watch our Webinar on The Future of Consumer Data in an Open Data Economy

 

6. Matplotlib Pie plot

  • A pie chart is created through the pie() function in the matplotlib library.
  • Example: Input: 

  • Plot generated: 

Source

  • Each wedge can be labeled with the parameter label which is an array with the labels for each wedge.

Syntax: mylabels = [“cars”“bikes”“cycles”“buses”]

  • Default start angle in a pie chart is the X-axis, which can be changed with the parameter startangle. The angle is defined in degrees and the default angle is 0.
  • With the explode parameter, the required wedge can be displayed to be standing out. It is specified through an array with the value of the wedge to be standing out and the rest values kept as 0.

Syntax: myexplode = [0.2, 0, 0, 0]

  • Setting shadows parameter to true will create a shadow for the pie chart.
  • colors parameter is used to specify the colors of each wedge through an array.

Syntax:  mylabels = [“cars”“bikes”“cycles”“buses”]

mycolors = [“black”, “hotpink”, “blue”, green””]

  • legend() function is used to add an explanation to each wedge.

7. Histogram

  • Histogram is used for plotting the frequency distributions.
  • hist() function is used for creating a histogram that uses an array of numbers for creating the histogram.
  • Example: Input: the above lines will be the same as that used for plotting bar diagrams.

x = np.random.normal(90, 100, 200)

print(x)

  • Plot generated:

Conclusion

As discussed in the article, matplotlib in python can be used for the plotting of the data in various styles. Further various options are available to enhance our plots allowing the user to label, resize, and color as per their wish. Therefore, python and its libraries are quite helpful for the analysis and handling of data in the present age. 

Python programming training over the field of data science is available in the course Executive PG Programme in Data Science offered by upGrad. If you are willing to get trained under industry experts and explore the various opportunities held by data science, you can enroll in the course.  The course is offered by IIIT-Bangalore and designed especially for Entry to mid-level professionals within the age group of 21 to 45 years. Irrespective of any gender, if you fall within this mentioned category and dream of becoming a leading data scientist, come join us in this venture. For any assistance ship, our team is ready to help you.

Profile

Rohit Sharma

Blog Author
Rohit Sharma is the Program Director for the UpGrad-IIIT Bangalore, PG Diploma Data Analytics Program.

Frequently Asked Questions (FAQs)

1Where are the advantages of the Pandas module?

Pandas is one of the most important and useful Python modules that has various use cases. The following are some of the advantages of the Pandas module.
1. Pandas allow convenient data filtering and subsetting.
2. Its code is clean and understandable so that the users can focus more on the core aim.
3. Since it is written in NumPy, it inherits some of the useful features of NumPy as well.

2What purpose does the Matplotlib library serve?

1. The Matplotlib library provides numerous useful APIs to embed various types of plots including histogram, line and bar plots, scatter plots, and bar graphs.
2. This powerful library can help you create 2D plots using data stored in an array. Its simple code structure allows you to embed any type of plot just by adding a few simple lines of code.
3. It has an object-oriented interface which makes it a powerful alternative to MATLAB and Pyplot. It is highly customizable and but requires some experience to use the advanced features.
4. If you need to embed simpler plots in your application, then you should go for its MATLAB style Python interface. However, if you have complex plots, then its OOP interface would be a much better option.

3

Explore Free Courses

Suggested Blogs

What is Linear Data Structure? List of Data Structures Explained
49861
Data structures are the data structured in a way for efficient use by the users. As the computer program relies hugely on the data and also requires a
Read More

by Rohit Sharma

30 Nov 2023

KDD Process in Data Mining: What You Need To Know?
46816
As a working professional, you are familiar with terms like data, database, information, processing, etc. You must have also come across terms like da
Read More

by Rohit Sharma

30 Nov 2023

Top 7 Data Types of Python | Python Data Types
96888
Data types are an essential concept in the python programming language. In Python, every value has its own python data type. The classification of dat
Read More

by Rohit Sharma

30 Nov 2023

Searching in Data Structure: Different Search Methods Explained
33243
The communication network is expanding, and so the people are using the internet! Businesses are going digital for efficient management. The data gene
Read More

by Rohit Sharma

30 Nov 2023

How to Implement Switch Case Functions in Python? [2023]
113093
Introduction Have you ever wondered if there is an alternative to write those complex If-else statements in Python? If you do not want multiple ‘If’
Read More

by Rohit Sharma

30 Nov 2023

Binary Tree in Data Structure: Properties, Types, Representation & Benefits
77344
Data structures serve as the backbone of efficient data organization and management within computer systems. They play a pivotal role in computer algo
Read More

by Rohit Sharma

30 Nov 2023

Top 10 Business Intelligence Interview Questions and Answers [For Beginners & Experienced]
16090
Introduction When you buy a product from an e-commerce site, you will often find that you will be asked to review the product and provide feedback on
Read More

by Rohit Sharma

29 Nov 2023

10 Exciting Python GUI Projects & Topics For Beginners [2023]
54595
Python GUI projects offer a great way to become proficient in Python programming, and they include a wide range of exciting options, including Python
Read More

by Rohit Sharma

27 Nov 2023

17 Must Read Pandas Interview Questions & Answers [For Freshers & Experienced]
50414
Pandas is a BSD-licensed and open-source Python library offering high-performance, easy-to-use data structures, and data analysis tools. Python with P
Read More

by Rohit Sharma

04 Oct 2023

Schedule 1:1 free counsellingTalk to Career Expert
icon
footer sticky close icon