pyplot common axes labels for subplots

I have the following plot: import matplotlib.pyplot as plt fig2 = plt.figure() ax3 = fig2.add_subplot(2,1,1) ax4 = fig2.add_subplot(2,1,2) ax4.loglog(x1, y1) ax3.loglog(x2, y2) ax3.set_ylabel(‘hello’) I want to be able to create axes labels and titles not just for each of the two subplots, but also common labels that span both subplots. For example, since both plots … Read more