1 |
Xquanti |
|
mean |
|
sigma |
|
Y |
|
k |
|
n |
|
p |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | ##---- Should be DIRECTLY executable !! ----
##-- ==> Define data, use random,
##-- or do help(data=index) for the standard data sets.
## The function is currently defined as
function (Xquanti, mean, sigma, Y, k = length(sigma), n = nrow(Xquanti),
p = length(colnames(Xquanti)))
{
K = length(unique(Y))
fk_quanti_ik <- matrix(1, nrow = n, ncol = length(unique(Y)))
fkx_q <- as.list(seq_len(length(Y)))
for (i in 1:n) {
for (k in 1:K) {
fk_quanti_ik[i, k] <- (1/(((2 * pi)^(p/2)) * (det(as.matrix(sigma[[k]]))^(0.5)))) *
exp((-0.5) * as.matrix(Xquanti[i, ] - as.numeric(mean[k,
-1])) %*% ginv(as.matrix(sigma[[k]])) %*% t(as.matrix(Xquanti[i,
] - as.numeric(mean[k, -1]))))
}
fkx_q[[i]] <- fk_quanti_ik[i, ]
}
return(fkx_q)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.