R/nu1_log_self.R

Defines functions nu1_log_self

Documented in nu1_log_self

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

nu1_log_self <- function(x) {
  exp(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.