names.ff | R Documentation |
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 |
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.
names
returns a character vector (or NULL)
Jens Oehlschlägel
names
, dimnames.ff_array
, vw
, virtual
x <- ff(1:26, names=letters)
names(x)
names(x) <- LETTERS
names(x)
names(x) <- NULL
names(x)
rm(x); gc()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.