summary | R Documentation |
AnyHermesData
ObjectsProvides a concise summary of the content of AnyHermesData
objects.
summary(object, ...)
## S4 method for signature 'AnyHermesData'
summary(object)
## S4 method for signature 'HermesDataSummary'
show(object)
object |
( |
... |
not used. |
An object of the corresponding summary class, here
HermesDataSummary
.
summary(AnyHermesData)
: A summary method for AnyHermesData
object that
creates a HermesDataSummary
object.
show(HermesDataSummary)
: A show method prints summary description of HermesDataSummary
object
generated by the summary()
method.
object <- hermes_data
object_summary <- summary(object)
# We can access parts of this S4 object with the `slot` function.
str(object_summary)
slotNames(object_summary)
slot(object_summary, "lib_sizes")
# Just calling the summary method like this will use the `show()` method.
summary(object)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.