I am new to python visualizations. I am trying to use draw two scatter plots side by side using the follow code, but couldn't.
Also, can someone please provide me some good tutorials for seaborn/matplotlib. I peaked into their documentation and its daunting
plt.figure(figsize = (16, 12))
ax = plt.subplot(1,2,1)
sns.relplot(x="total_bill", y="tip", data=tips, ax= ax);
ax = plt.subplot(1,2,2)
sns.scatterplot(x="total_bill", y="tip", data=tips);
I get two plots, one above the another. The first plot is of good size, but the second plot below is not of the size as first and has very small x axis length