October 2018
Beginner to intermediate
676 pages
18h 30m
English
This part is common for both pairplot() and PairGrid(), whereas the How to do it... and How it works... sections will be repeated for each of them separately.
Import the required libraries:
import matplotlib.pyplot as pltimport seaborn as sns# The following parameters are set in rc configuration file, so they will be applicable for the entire session# font_scale factor is the multiplier of default font size(instead of absolute size, it is relative size)sns.set(rc={"axes.linewidth": 1, "xtick.major.width": 1, "ytick.major.width": 1, "xtick.major.size": 5, "ytick.major.size": 5}, style="ticks", context="paper", font_scale=1.25)
Read now
Unlock full access