Nothing
#' function to calculate first derivative of nu function given eta for identity link
#'
#' @param x vector of eta, eta=X*beta
#'
#' @return the first derivative of nu function given eta for identity link
#' @export
#'
#' @examples
#' eta = c(1,2,3,4)
#' nu1_identity_self(eta)
#'
nu1_identity_self <- function(x) {
rep(1, length(x)) #constant
}
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.