For ff_vector
s you can set names, though this is not recommended for large objects.
# S3 method for ff
names(x)
# S3 method for ff
names(x) <- value
# S3 method for ff_array
names(x)
# S3 method for ff_array
names(x) <- value
a ff vector
a character vector
names
returns a character vector (or NULL)
If vw
is set, names.ff
returns the appropriate part of the names, but you can't set names while vw
is set.
names.ff\_array
returns NULL and setting names for
ff_array
s is not allowed,
but setting dimnames
is.
# NOT RUN {
x <- ff(1:26, names=letters)
names(x)
names(x) <- LETTERS
names(x)
names(x) <- NULL
names(x)
rm(x); gc()
# }
Run the code above in your browser using DataLab