I am trying to visualize the differences between two distributions (preferably using python). I've plotted the cumulative frequency distributions as well as kernel density estimates: kde, cumulative frequency
But, my audience is not used to looking at graphs like this, so I would like to plot just the difference between the distributions and scale it so it will be more obvious (visually) how they differ. I found this post where the first answer shows a solution to this using R. I have no experience using R so I would like to know if there is a way to implement this using Python. EDIT: I am trying to plot the difference, not just shade the areas that are different. Like int the third plot of the linked answer (abs(ydiff)). Having it included in the original graph, like the "5*difference of density" shaded area in the first plot would be nice, but is not necessary.
Or, if anyone has another idea of how to visually emphasize the difference between two distributions, I'd love to hear it!