Réponses:
Une estimation de la densité du noyau est une distribution de mélange; pour chaque observation, il y a un noyau. Si le noyau est une densité échelonnée, cela conduit à un algorithme simple d'échantillonnage à partir de l'estimation de la densité du noyau:
repeat nsim times:
sample (with replacement) a random observation from the data
sample from the kernel, and add the previously sampled random observation
# Original distribution is exp(rate = 5)
N = 1000
x <- rexp(N, rate = 5)
hist(x, prob = TRUE)
lines(density(x))
# Store the bandwith of the estimated KDE
bw <- density(x)$bw
# Draw from the sample and then from the kernel
means <- sample(x, N, replace = TRUE)
hist(rnorm(N, mean = means, sd = bw), prob = TRUE)
M = 10
hist(rnorm(N * M, mean = x, sd = bw))
Si pour une raison quelconque vous ne pouvez pas puiser dans votre noyau (ex. Votre noyau n'est pas une densité), vous pouvez essayer avec un échantillonnage d'importance ou MCMC . Par exemple, en utilisant l'échantillonnage d'importance:
# Draw from proposal distribution which is normal(mu, sd = 1)
sam <- rnorm(N, mean(x), 1)
# Weight the sample using ratio of target and proposal densities
w <- sapply(sam, function(input) sum(dnorm(input, mean = x, sd = bw)) /
dnorm(input, mean(x), 1))
# Resample according to the weights to obtain an un-weighted sample
finalSample <- sample(sam, N, replace = TRUE, prob = w)
hist(finalSample, prob = TRUE)
PS Avec mes remerciements à Glen_b qui a contribué à la réponse.