fig, axes = plt.subplots(1,2,figsize=(12, 5))sns.barplot(x="sex", y="survived", hue="class", data=titanic,ax=axes[0])sns.barplot(x="sex", y="survived", hue="class", data=titanic, dodge=False, errwidth=0, ax=axes[1])123