summary.MicrobialGrowth {MicrobialGrowth} | R Documentation |
MicrobialGrowth summary function
Description
Summarizes the regression of an MicrobialGrowth-object.
Usage
## S3 method for class 'MicrobialGrowth'
summary(object, ...)
Arguments
object |
MicrobialGrowth-object. |
... |
additional arguments affecting the summary produced. |
Details
Equivalent to summary(MicrobialGrowthObject$reg, ...)
to which we add the corresponding model
member and the summary.MicrobialGrowth
class.
Value
The summary of the successful regression, NULL
otherwise.
Examples
# Simple example
g <- MicrobialGrowth(example_data$time, example_data$y1)
summary(g)
# Example without summary available
g <- MicrobialGrowth(example_data$time, example_data$y15)
summary(g)
g <- MicrobialGrowth.create(0.14, 1.5, 0.07, 45, c(0,100), model="gompertz")
summary(g)
[Package MicrobialGrowth version 1.0.0 Index]