print.MicrobialGrowth {MicrobialGrowth} | R Documentation |
MicrobialGrowth print function
Description
Print function of MicrobialGrowth-objects.
Usage
## S3 method for class 'MicrobialGrowth'
print(x, ...)
Arguments
x |
MicrobialGrowth-object. |
... |
further arguments passed to or from other methods. |
Value
No return value, called to print information about a MicrobialGrowth-object.
See Also
MicrobialGrowth, MicrobialGrowth.create
Examples
# Print from regressed MicrobialGrowth-object
g <- MicrobialGrowth(example_data$time, example_data$y1, model="gompertz")
print(g) # or just `g` in the console
# Print from a user-created MicrobialGrowth-object (via MicrobialGrowth.create)
g <- MicrobialGrowth.create(N0 = 0.14, Nmax = 1.43, mu = 0.07, lambda = 45,
xlim = c(0, 100), model="gompertz")
print(g) # or just `g` in the console
[Package MicrobialGrowth version 1.0.0 Index]