#' Extract the influence on the estimation of the latent variable
#' @param score The score matrix
#' @param InvJac The inverse Jacobian
#' @param i the sample index
#'
#' @return The influence of all observations on the i-th latent variable
getInflLatentVar = function(score, InvJac, i){
score*InvJac[,i]
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.