R/fitdist.R

Defines functions coef.summary.fitdist nobs.fitdist

nobs.fitdist <- function(object, ...) {
  object$n
}

coef.summary.fitdist <- function(object, ...) {
  z <- cbind(object$estimate, object$sd)
  colnames(z) <- c("coef", "sd")
  z
}

Try the em package in your browser

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

em documentation built on Jan. 11, 2023, 9:07 a.m.