0% found this document useful (0 votes)
24 views

IP 12 PDF - Data Visualisation Lecture

About data visualization using pandas

Uploaded by

dont.switch.this
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views

IP 12 PDF - Data Visualisation Lecture

About data visualization using pandas

Uploaded by

dont.switch.this
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 12

In this session:

• Data Visualization

• Types of plots:
• Line
• Bar
• Histogram

• Customizing Plots

• Practical in Jupyter notebook


Data Visualization

Representing the data in the form of pictures or graph → helps the decision makers
Matplotlib
Matplotlib is a python library which provides many
interfaces and function to present data in 2D graphics.
It is a high-quality plotting library of Python.
Matplotlib
Matplotlib is a python library which provides many
interfaces and function to present data in 2D graphics.
We can say, Matplotlib is a high-quality plotting
library of Python.

Matplotlib library offers many different collections of


sub modules; Pyplot is one such sub module.
Matplotlib
Matplotlib is a python library which provides many
interfaces and function to present data in 2D graphics.
We can say, Matplotlib is a high-quality plotting
library of Python.

Matplotlib library offers many different collections of


sub modules; Pyplot is one such sub module.

Pyplot is a collection of methods within Matplotlib


library which allows user to construct 2D plots easily
Matplotlib
Matplotlib is a python library which provides many
interfaces and function to present data in 2D graphics.
We can say, Matplotlib is a high-quality plotting
library of Python.

Matplotlib library offers many different collections of


sub modules; Pyplot is one such sub module.

Pyplot is a collection of methods within Matplotlib


library which allows user to construct 2D plots easily
Types of Plots
Line chart: it displays information as a series of data
points called markers connected by straight line
Types of Plots
Bar chart presents category wise data in rectangular
bars with length proportional to the values it can be
horizontal and vertical.
Types of Plots
Histogram: It is a graphical representation of the
distribution of numerical data. The height of each bar
corresponds to the frequency of data falling within that
bin.
Customizing Plots
Customizing Plots
Hands on with Matplotlib

You might also like