.parseMicrobialGrowthCreateArgs {MicrobialGrowth} | R Documentation |
Coefficient argument parser (create function)
Description
Parses the coefficients passed to the create function to obtain 3 values: one for the main curve and two for the confint curves. These values are sorted.
Usage
.parseMicrobialGrowthCreateArgs(x)
Arguments
x |
value(s) for a given coefficient. |
Value
the 3 ordered values for the given coefficient.
Examples
.parseMicrobialGrowthCreateArgs(1)
## [1] 1 1 1
.parseMicrobialGrowthCreateArgs(c(1,2))
## [1] 1.0 1.5 2.0
.parseMicrobialGrowthCreateArgs(c(1,2,3))
## [1] 1 2 3
.parseMicrobialGrowthCreateArgs(c(3,1,2))
## [1] 1 2 3
[Package MicrobialGrowth version 1.0.0 Index]