October 2018
Beginner to intermediate
676 pages
18h 30m
English
Let's import the required libraries and set up plt.rcParams(), which is also required for this recipe. These settings will be applicable to all the plots drawn in this session:
import matplotlib.pyplot as pltimport numpy as npplt.rcParams['figure.titlesize'] = 15plt.rcParams['legend.fontsize'] = 12plt.rcParams['axes.labelsize'] = 12plt.rcParams['axes.labelweight'] = 'bold'plt.rcParams['xtick.labelsize'] = 12plt.rcParams['ytick.labelsize'] = 12
Read now
Unlock full access