View source: R/summary.objects.summary.R
summary.objects.summary | R Documentation |
objects.summary
ObjectsSummarize an object of class objects.summary
with some specific formatting
options before using summary.data.frame
.
## S3 method for class 'objects.summary'
summary(
object,
...,
data.class.width = getOption("osum.data.class.width", default = NULL),
format.extent = getOption("osum.format.extent", default = TRUE)
)
object |
object of class |
... |
further arguments to be passed down to |
data.class.width |
integer indicating the width of the |
format.extent |
logical indicating whether the |
A matrix of class "table
", obtained by applying summary
to each column of the object (after applying the specific formatting according to the
arguments' values) and collating the results.
objects.summary
, summary.data.frame
, quantile
os <- objects.summary("package:datasets")
print(summary(os, format.extent = FALSE, maxsum = 10, quantile.type = 7))
print(summary(os, format.extent = TRUE, maxsum = 12, quantile.type = 1))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.