Description Usage Arguments Value Examples
An integrated_model
object returns a greta_array that can be
passed to model
1 2 3 4 5 6 7 8 9 10 11 12 | integrated_model(integrated_process, ...)
is.integrated_model(model)
## S3 method for class 'integrated_model'
print(x, ...)
## S3 method for class 'integrated_model'
plot(x, ...)
## S3 method for class 'integrated_model'
summary(object, ...)
|
... |
|
An object of class greta_array
, which can be passed to
model and has associated 'print', 'plot', and 'summary' methods
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | library(integrated)
# prepare an example model
model <- integrated_model()
## Not run:
# summarise fitted model
model
summary(model)
plot(model)
## End(Not run)
# check if an object is an integrated_model object
## Not run:
is.integrated_model(model)
## End(Not run)
# Print information about an 'integrated_model' object
## Not run:
print(x)
## End(Not run)
# Plot an 'integrated_model' object
## Not run:
plot(x)
## End(Not run)
# Summarise an 'integrated_model' object
## Not run:
summary(x)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.