View source: R/multivariate_nonparametric_L2.R
kde.eval | R Documentation |
Perform multivariate kernel density estimation and evaluated the estimated densities at specified points.
kde.eval(x, H, eval.points)
x |
A |
H |
A |
eval.points |
A |
A numeric vector of evaluated densities.
Haotian Xu
n = 100
p = 10
x = matrix(rnorm(n*p), nrow = n)
h = 2*(1/n)^{1/(4+p)} # bandwith
kde.eval(x, h*diag(p), x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.