Description Usage Arguments Details Examples
Methods for computing on extree_data
objects.
1 2 3 4 5 6 7 8 |
x |
an object of class |
object |
an object of class |
max.level |
maximal level of nesting which is applied for displaying nested structures, e.g., a list containing sub lists. Default NA: Display all nesting levels. |
give.attr |
logical; if TRUE (default), show attributes as sub structures. |
... |
additional arguments passed to |
str
compactly shows the internal structure of the object and
print
calls str
.
dimnames
gets the dimnames
of x$data
and dim
gets
the dim
of x$data
.
1 2 3 4 5 6 7 8 9 10 11 | ## airquality data
airq <- subset(airquality, !is.na(Ozone))
my_data <- extree_data(Ozone ~ Wind + Temp,
data = airq, yx = "matrix")
## use methods
print(my_data)
str(my_data)
dim(my_data)
dimnames(my_data)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.