Nothing
##' @export
logLik.biprobit <- function(object,indiv=FALSE,...) {
if (indiv) return(object$logLik)
n <- sum(object$N[1])
p <- length(coef(object))
loglik <- sum(object$logLik)
attr(loglik, "nall") <- n
attr(loglik, "nobs") <- n
attr(loglik, "df") <- p
class(loglik) <- "logLik"
return(loglik)
}
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.