October 2018
Beginner to intermediate
676 pages
18h 30m
English
This part is common for both jointplot() and JointGrid(), 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 numpy as npimport seaborn as snsfrom scipy.stats import normfrom itertools import chain # chain enables iteration of multiple lists in loops such as for loop.# 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}, ...Read now
Unlock full access