Nothing
getCovTheta <- function(derivVechMatrix, UMatrix, fit) {
partA <- solve(t(derivVechMatrix) %*% solve(UMatrix) %*% derivVechMatrix)
partB <- t(derivVechMatrix) %*% solve(UMatrix) %*% fit$sigmaHatVar %*% solve(UMatrix) %*% derivVechMatrix
covTheta <- partA %*% partB %*% partA
return(covTheta)
}
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.