R/sensitivity.R

Defines functions sensitivity

Documented in sensitivity

sensitivity <- function(process, method = c('saddlepoint', 'hypoexp'), ...) {
    stopifnot(is.riskproc(process))
    switch(match.arg(method),
           saddlepoint = saddlepointSensitivity(process, ...),
           hypoexp     = hypoexpSensitivity(process, ...))
}

Try the sdprisk package in your browser

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

sdprisk documentation built on May 1, 2019, 7:50 p.m.