R/get_lm_jacobian.R

Defines functions get_lm_jacobian

get_lm_jacobian <- function(m){
  stopifnot(is(m, "lm"), !is.null(m[["x"]]))
  return(m[["x"]])
}

Try the distfreereg package in your browser

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

distfreereg documentation built on April 4, 2025, 12:30 a.m.