summary.MicrobialGrowth | R Documentation |
Summarizes the regression of an MicrobialGrowth-object.
## S3 method for class 'MicrobialGrowth'
summary(object, ...)
object |
MicrobialGrowth-object. |
... |
additional arguments affecting the summary produced. |
Equivalent to summary(MicrobialGrowthObject$reg, ...)
to which we add the corresponding model
member and the summary.MicrobialGrowth
class.
The summary of the successful regression, NULL
otherwise.
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.