Nothing
rhoCalculation <- function(fit) {
rho <- ((sum(apply(fit$residuals, 1, sum)^2) - sum(fit$residuals^2)) /
(fit$info$N * fit$info$T * (fit$info$T - 1))) /
(sum(fit$residuals^2) / (fit$info$N * fit$info$T))
return(rho)
}
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.