getMeanFunctions function

Display available dose-response models

Display available dose-response models

Display information about available, built-in dose-response models.

getMeanFunctions(noParm = NA, fname = NULL, flist = NULL, display =TRUE)

Arguments

  • noParm: numeric specifying the number of parameters of the models to be displayed. The default (NA) results in display of all models, regardless of number of parameters.
  • fname: character string or vector of character strings specifying the short name(s) of the models to be displayed (need to match exactly).
  • flist: list of built-in functions to be displayed.
  • display: logical indicating whether or not the requested models should be displayed on the R console.

Details

The arguments noParm and fname can be combined.

Returns

An invisible list of functions or a list of strings with brief function descriptions is returned.

Author(s)

Christian Ritz

Examples

## Listing all functions getMeanFunctions() ## Listing all functions with 4 parameters getMeanFunctions(4) ## Listing all (log-)logistic functions getMeanFunctions(fname = "L") ## Listing all three-parameter (log-)logistic or Weibull functions getMeanFunctions(3, fname = c("LL", "W")) ## Listing all four-parameter (log-)logistic or Weibull functions getMeanFunctions(4, fname = c("LL", "W"))
  • Maintainer: Christian Ritz
  • License: GPL-2 | file LICENCE
  • Last published: 2016-08-30