To quickly make subplots that share an axis, use: fig, axis = plt.subplots( 2, 2, sharey=True, sharex=True) Styling of subplots: Remove and adjust space between and around subplots: plt.subplots_adjust(left=None, bottom=None, right=None, top=None, wspace=0, hspace=0) Color and...