I don't want any subplot's label. Right now, I have to set every subplot axes one by one. Any way to set them all together.
f, ((ax1, ax2),(ax3, ax4)) = plt.subplots(2,2)
ax1.set_ylabel('')
ax1.set_ylabel('')
ax2.set_ylabel('')
ax2.set_ylabel('')
....