Visualization Tools
In this lesson, some visualization tools are explored.
We'll cover the following...
This lesson reviews some of the tools and libraries that are used in this chapter to visualize various forms of data.
Matplotlib
Matplotlib is an interactive python graph-plotting library that helps us visualize data in various 2D plots. The following is an example of how matplotlib can be used to create a visualization of the Sin wave.
Seaborn
Seaborn is an extension of the matplotlib package and builds on top of the already provided matplotlib functions. It adds more interactivity in the already present plots providing more concise information. The following code is inspired by an example from seaborn documentation that plots a joint plot. It can also be found here.
Types of plots
-
Histogram
-
Box
-
Regression
-
Heatmaps
-
Scatter
-
KDE
More information on plots can be found on Matplotlib and Seaborn.
We start to explain and use Histogram plots in the next lesson.