Getting and setting dimnames
For ff_array
s you can set dimnames.
## S3 method for class 'ff_array' dimnames(x) ## S3 replacement method for class 'ff_array' dimnames(x) <- value
x |
a ff array (or matrix) |
value |
a list with length(dim(x)) elements (either NULL of character vector of length of dimension |
dimnames
returns a list, see dimnames
Jens Oehlschlägel
x <- ff(1:12, dim=c(3,4), dimnames=list(letters[1:3], LETTERS[1:4])) dimnames(x) dimnames(x) <- list(LETTERS[1:3], letters[1:4]) dimnames(x) dimnames(x) <- NULL dimnames(x) rm(x); gc()
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.