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 functionsgetMeanFunctions()## Listing all functions with 4 parametersgetMeanFunctions(4)## Listing all (log-)logistic functionsgetMeanFunctions(fname ="L")## Listing all three-parameter (log-)logistic or Weibull functionsgetMeanFunctions(3, fname = c("LL","W"))## Listing all four-parameter (log-)logistic or Weibull functionsgetMeanFunctions(4, fname = c("LL","W"))