How can I plot multiple distribution plots in one plot where I have column = "Quantity" from 5 dataframes at nation, region, division, state and DMA level and the length of dataframes and their scale differs a lot.
I used this code:
sns.displot(data= data_vert, x='dev_median_qty', hue='level', kind='kde', fill=True, palette=sns.color_palette('bright')[:5], height=5, aspect=2.5)
plt.xlim(-5, 25)
And I got this graph :
I want that area under each curve is one, or every level data gives same area under the curve without changing the distribution, so that this graph can be more visually sound and good to observe.