R/fr_bdII.R

Defines functions bdII bdII_fit bdII_nll bdII_diff bdII_nll_diff

Documented in bdII bdII_diff bdII_fit bdII_nll bdII_nll_diff

## The "incorrect" implimentation of the Beddington-DeAngelis Type-II curve
# Now fully deprecated 

bdII <- function(...) {
    msg <- paste0("The bdII model was deprecated in version 0.5.\n",
                  "Use bdaII or emdII depending on your needs.\n",
                  "See ?bdII for more information.\n")
    stop(msg, call. = FALSE)  
}

bdII_fit <- function(...) {
    bdII(...)
}	

bdII_nll <- function(...) {
    bdII(...) 
}

bdII_diff <- function(...) {
    bdII(...) 
}

bdII_nll_diff <- function(...) {
    bdII(...)
}

Try the frair package in your browser

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

frair documentation built on May 2, 2019, 8:17 a.m.