I am trying to plot a subplot using two columns and the plot size is not getting increased with increase in figsize value.
plt.figure(figsize=(20, 10))
fig, (ax1, ax2) = plt.subplots(1, 2)
fig.suptitle('A Vs B')
ax1.plot(df['X'], df['A'])
ax2.plot(df['X'], df['B'])