Description Usage Arguments Details Value Author(s) Examples
Display information about available, built-in dose-response models.
| 1 |   getMeanFunctions(noParm = NA, fname = NULL, flist = NULL, display =TRUE)
 | 
| 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. | 
The arguments noParm and fname can be combined.
An invisible list of functions or a list of strings with brief function descriptions is returned.
Christian Ritz
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## 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"))
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.