Nothing
#' function to calculate the second derivative of nu function given eta for logit link
#'
#' @param x vector of eta, eta=X*beta
#'
#' @return the second derivative of nu function for logit link
#' @export
#'
#' @examples
#' eta = c(1,2,3,4)
#' nu2_logit_self(eta)
#'
nu2_logit_self <- function(x) {
exp(x)*(1-4*exp(x)+exp(2*x))/(1 + exp(x))^4;
}
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.