Is there a way for compare the distribution of different set of samples? For example, I have three sets, for example:
- X1 = N(0, 1);
- X2 = N(0.5, 1);
- X3 = N(1, 1).
Each set is drown with a specific (and unknown) distribution. I use Gaussian Kernel Density Estimations (https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.gaussian_kde.html) for estimating the three pdf. Now, I would like to measure the similarity (or divergence) between the three pdf, and have as result that X1 is more similar to X2.
How can I do it? Or are there other ways to i) estimate a pdf and *ii)*compare different pdfs?