list.tree.Rd
This is a function to pretty-print the structure of any data object
(usually a list). It is similar to the R function str
.
list.tree(struct, depth=-1, numbers=FALSE, maxlen=22, maxcomp=12,
attr.print=TRUE, front="", fill=". ", name.of, size=TRUE)
The object to be displayed
Maximum depth of recursion (of lists within lists ...) to be printed; negative value means no limit on depth.
If TRUE, use numbers in leader instead of dots to represent position in structure.
Approximate maximum length (in characters) allowed on each line to give the first few values of a vector. maxlen=0 suppresses printing any values.
Maximum number of components of any list that will be described.
Logical flag, determining whether a description of attributes will be printed.
Front material of a line, for internal use.
Fill character used for each level of indentation.
Name of object, for internal use (deparsed version of struct by default).
Logical flag, should the size of the object in bytes be printed?
A description of the structure of struct will be printed in outline form, with indentation for each level of recursion, showing the internal storage mode, length, class(es) if any, attributes, and first few elements of each data vector. By default each level of list recursion is indicated by a "." and attributes by "A".
X <- list(a=ordered(c(1:30,30:1)),b=c("Rick","John","Allan"),
c=diag(300),e=cbind(p=1008:1019,q=4))
list.tree(X)
#> X = list 4 (724376 bytes)
#> . a = integer 60= factor (30 levels)( ordered factor )= 1 2 3 4 5 6 7 8 ...
#> . b = character 3= Rick John Allan
#> . c = double 90000= array 300 X 300= 1 0 0 0 0 0 0 0 ...
#> . e = double 24= named array 12 X 2= 1008 1009 1010 1011 ...
# In R you can say str(X)