getCreateFunctionName {MicrobialGrowth} | R Documentation |
Create function name getter
Description
Returns the name of the creation function associated with the model.
Usage
getCreateFunctionName(model)
Arguments
model |
the model name. |
Value
the string corresponding to the creation function of the model. Warning, this function does not check the existence of the corresponding function.
Examples
getCreateFunctionName("gompertz")
## [1] "gompertz.create"
# Note that this does not verify the existence
getCreateFunctionName("NonExistentFunction")
## [1] "NonExistentFunction.create"
[Package MicrobialGrowth version 1.0.0 Index]