I have two dataframes of equal size. I would like to plot the distribution of the data on a boxplot or violin plot as a pair. Thus far I was able to plot them, however, the distributions are top of each other. How can I plot them next to each other?
fig, ax = plt.subplots(figsize=(15, 6))
ax = sns.violinplot(data=dfInside, color="blue")
ax = sns.violinplot(data=dfOutside, color="red")
plt.show()