Getting and setting names
For ff_vector
s you can set names, though this is not recommended for large objects.
## S3 method for class 'ff' names(x) ## S3 replacement method for class 'ff' names(x) <- value ## S3 method for class 'ff_array' names(x) ## S3 replacement method for class 'ff_array' names(x) <- value
x |
a ff vector |
value |
a character vector |
names
returns a character vector (or NULL)
Jens Oehlschlägel
x <- ff(1:26, names=letters) names(x) names(x) <- LETTERS names(x) names(x) <- NULL names(x) rm(x); gc()
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.