summary {opm} | R Documentation |
Generate a summary (which also prints nicely to the
screen), or display an OPM
,
OPMS
or MOPMX
object on
screen.
## S4 method for signature 'CMAT' show(object) ## S4 method for signature 'MOPMX' show(object) ## S4 method for signature 'OPMX' show(object) ## S4 method for signature 'CMAT' str(object, ...) ## S4 method for signature 'MOPMX' str(object, ...) ## S4 method for signature 'WMDX' str(object, ...) ## S4 method for signature 'MOPMX' summary(object, ...) ## S4 method for signature 'OPM' summary(object, ...) ## S4 method for signature 'OPMS' summary(object, ...)
object |
|
... |
Optional arguments to be included in the output. |
Currently the show
methods are just wrappers for
the summary
methods for these objects with an
additional call to print
. The CMAT
method is only for internal use.
For the OPM
method, a named list of the
class OPM_Summary
, returned invisibly. The
‘Metadata’ entry is the number of non-list
elements in metadata
. For the
OPMS
method, a list of such lists (one per
plate), also returned invisibly, with the class set to
OPMS_Summary
and some information on the entire
object in the attribute ‘overall’.
base::summary base::formatDL methods::show base::print
Other plotting-functions: ci_plot
,
heat_map
, level_plot
,
parallel_plot
, parallelplot
,
radial_plot
, xy_plot
# OPM method (x <- summary(vaas_1)) stopifnot(is.list(x), is.object(x)) vaas_1 # calls show() # OPMS method (x <- summary(vaas_4)) stopifnot(is.list(x), length(x) == 4L, all(sapply(x, is.list)), is.object(x)) vaas_4 # calls show()