R/fitsadC.R

Defines functions fitsadC

Documented in fitsadC

fitsadC <- function(x, sad=c("exp","gamma","lnorm","pareto", "weibull"), ...){ 
  dots <- list(...)
  sad <- match.arg(sad)
  fit <- get(paste("fit", sad, "C", sep=""), mode = "function")
  do.call(fit, c(list(x = x), dots))
}

Try the sads package in your browser

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

sads documentation built on June 22, 2024, 12:18 p.m.