Matplotlib
Basic
Components of a Matplotlib Figure:

Functions
plt.tight_layout(): Adjust the padding between and around subplotsplt.xticks(rotation=n): rotate x-axisax.tick_params("x", labelrotation=n): rotate multiple subplots' x-axisplt.xlabel("name): set x label's nameplt.title("title"): set plot titlefig,axs = plt.subplots(x,y): plot subplotaxs[x0,y0].plot(x,y)