Nothing
fitBetaPML <- function(fit) {
beta <- fit$individuals %>%
rlist::list.map(list(p1 = wi * t(xi) %*% solve(fit$sigma) %*% xi, p2 = wi * t(xi) %*% solve(fit$sigma) %*% yi)) %>%
purrr::transpose() %>%
rlist::list.map(Reduce("+", .)) %>%
rlist::list.append(final = solve(.$p1) %*% .$p2) %>%
.$final
colnames(beta) <- "coefficients"
return(beta)
}
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.