summary.listof | R Documentation |
Prints a useful summary of each item in a list of things.
## S3 method for class 'listof'
summary(object, ...)
object |
An object of class |
... |
Ignored. |
This is a method for the generic function summary
.
An object of the class "listof"
is effectively a list
of things which are all of the same class.
This function extracts a useful summary of each of the items in the list.
and \rolf
summary
,
plot.listof
x <- list(A=runif(10), B=runif(10), C=runif(10))
class(x) <- c("listof", class(x))
summary(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.