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