import matplotlib.pyplot as plt import numpy as np In [ ]: fig = plt.figure(figsize=(7, 7), facecolor='linen') ax = fig.add_subplot() ax.plot([2, 3, 1]) ax.scatter([2, 3, 1], [2, 3, 4]) plt.show() In [ ]: figsize = (4, 4) fig, ax = plt.subplots(figsize=figsize) fig.suptitle('Title of a Figure') fig.suptitle('Title font-size=30', fontsize=30) fig.suptitle('Title font-family=monospace', fontfamily..