Learn R Programming

MicrobialGrowth (version 1.0.0)

getCreateFunctionName: Create function name getter

Description

Returns the name of the creation function associated with the model.

Usage

getCreateFunctionName(model)

Value

the string corresponding to the creation function of the model. Warning, this function does not check the existence of the corresponding function.

Arguments

model

the model name.

Examples

Run this code
getCreateFunctionName("gompertz")
## [1] "gompertz.create"

# Note that this does not verify the existence
getCreateFunctionName("NonExistentFunction")
## [1] "NonExistentFunction.create"

Run the code above in your browser using DataLab