dim.ordered {mining} | R Documentation |
Query whether each array dimension is ordered or not.
dim.ordered(x)
x |
an array |
Intuitively, a dimension is ordered if its values are in a natural
progression, such as (1,2,3) or ("one","two","three").
Programmatically, a dimension is considered ordered if and only if the
corresponding dimnames
vector has an ordered
attribute set to T
.
A named logical vector, with an entry for each dimension, indicating whether it is ordered or not.
Tom Minka