1 |
Y |
|
Xijh |
|
alpha_ki |
|
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 23 24 25 26 27 | ##---- 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 (Y, Xijh, alpha_ki, k = length(alpha_ki), n = nrow(Xquali),
p = length(colnames(Xquali)))
{
if (p == 0) {
p <- 1
n <- length(Xquali)
}
fk_quali_ik <- matrix(1, nrow = n, ncol = length(unique(Y)))
K = length(unique(Y))
fkx_q <- as.list(seq_len(length(Y)))
for (i in 1:n) {
for (k in 1:K) {
for (j in 1:p) {
fk_quali_ik[i, k] <- fk_quali_ik[i, k] * (as.numeric(alpha_ki[[k]][[j]][["proba"]] %*%
as.numeric(Xijh[[j]][i, -length(Xijh[[j]][i,
])])))
}
}
fkx_q[[i]] <- fk_quali_ik[i, ]
}
return(fkx_q)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.