R/getInflLatentVar.R

Defines functions getInflLatentVar

Documented in getInflLatentVar

#' 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]
}
CenterForStatistics-UGent/combi documentation built on Aug. 22, 2023, 11:02 p.m.