ll.Object {R.oo} | R Documentation |
Generates a list of informative properties of all members of an Object.
## S3 method for class 'Object': ll(this, ...)
... |
Any arguments accepted by the underlying function ll() . |
Returns a data.frame
containing information about all the members.
Henrik Bengtsson (http://www.braju.com/R/)
ll.default
().
For more information see Object
.
obj <- Object() obj$x <- 1:100 obj$y <- 100:1 ll(obj) ## Not run: gives: member data.class dimension objectSize 1 x numeric 100 424 2 y numeric 100 424 ## End(Not run)