print.MicrobialGrowth | R Documentation |
Print function of MicrobialGrowth-objects.
## S3 method for class 'MicrobialGrowth'
print(x, ...)
x |
MicrobialGrowth-object. |
... |
further arguments passed to or from other methods. |
No return value, called to print information about a MicrobialGrowth-object.
MicrobialGrowth, MicrobialGrowth.create
# 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
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.