desc
From unitizer v1.4.6
by Brodie Gaslam
One Line Description of Object
Objects are described by class, and dimensions. Dimensions is always denoted
in square brackets. For example, “int[10]” means an integer of length
ten. Typically an object will be identified by head(class(obj), 1L)
along with its dimensions. Recursive objects will have the first level shown
provided that doing so fits within limit
.
Usage
desc(val, limit = getOption("width"))
Arguments
- val
object to describe
- limit
max characters to display
Details
Eventually this will be migrated to an S3 generic to allow recursive dispatch on object type.
Value
character(1L) describing object
Examples
# NOT RUN {
desc(list(a=iris, b=lm(dist ~ speed, cars), 1:10, matrix(letters, 2)))
# }
Community examples
Looks like there are no examples yet.