Nothing
## File Name: immer_jml_calc_item_intercepts.R
## File Version: 0.071
immer_jml_calc_item_intercepts <- function(A, xsi, b_fixed=0)
{
K <- dim(A)[2]
b <- matrix( 0, nrow=dim(A)[1], ncol=K )
b <- b + b_fixed
for (kk in 1L:K){
b[,kk] <- b[,kk] + A[,kk,] %*% xsi
}
return(b)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.