R/nu2_identity_self.R

Defines functions nu2_identity_self

Documented in nu2_identity_self

#' function to calculate the second derivative of nu function given eta for identity link
#'
#' @param x vector of eta, eta=X*beta
#'
#' @return the second derivative of nu function for identity link
#' @export
#'
#' @examples
#' eta = c(1,2,3,4)
#' nu2_identity_self(eta)
#'

nu2_identity_self <- function(x) {
  rep(0, length(x))
}

Try the ForLion package in your browser

Any scripts or data that you put into this service are public.

ForLion documentation built on April 11, 2025, 5:38 p.m.