summary.objects.summary {osum} | R Documentation |
Summary Method for objects.summary
Objects
Description
Summarize an object of class objects.summary
with some specific formatting
options before using summary.data.frame
.
Usage
## 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)
)
Arguments
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 |
Value
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.
See Also
objects.summary
, summary.data.frame
, quantile
Examples
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))