Learn R Programming

MicrobialGrowth (version 1.0.0)

summary.MicrobialGrowth: MicrobialGrowth summary function

Description

Summarizes the regression of an MicrobialGrowth-object.

Usage

# S3 method for MicrobialGrowth
summary(object, ...)

Value

The summary of the successful regression, NULL otherwise.

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.

Examples

Run this code
# 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)

Run the code above in your browser using DataLab