I would like to visualize the mean and percentiles for each variable plotted on kdeplot
The code provided here “kdeplot showing mean and quartiles” does draw the mean and percentiles on the plot, but I would like to do so for a plot that has several variables such as the one displayed by the code below.
<code>sns.kdeplot(data=penguins, x="flipper_length_mm", hue="species", multiple="stack");
</code>
<code>sns.kdeplot(data=penguins, x="flipper_length_mm", hue="species", multiple="stack");
</code>
sns.kdeplot(data=penguins, x="flipper_length_mm", hue="species", multiple="stack");
In otherwords, is there a way to obtain the transformed flipper_length_mm data used in generating the plot for each of the 3 species?