Consider the Iris dataset, which has 4 attributes. KDE(kernel density estimation) is univariate analysis then how can we get overall kernel density estimation of the iris dataset
Asked
Active
Viewed 79 times
1 Answers
2
With multivariate data, you need to use multivariate kernel density estimation, that differs from univariate case by either using product of univariate kernels, or multivariate kernels (e.g. instead of univariate Gaussian, multivariate normal density as kernel).

Tim
- 108,699
- 20
- 212
- 390
-
That's surely right in principle. In practice, good luck visualizing a surface over all the variables based on just 150 observations for the _Iris_ data. I would focus on univariate and bivariate density estimation at most. – Nick Cox Jun 30 '20 at 15:14
-
@NickCox it doesn’t say that the point is plotting it, otherwise agree. – Tim Jun 30 '20 at 15:24
-
1A density estimate for any other purpose could be useful, but at the same time it would hard to know how far to trust it if you can't see it. I wouldn't trust a univariate estimate I couldn't see. – Nick Cox Jun 30 '20 at 15:34