physical.ff | R Documentation |
Functions for getting and setting physical and virtual attributes of ff objects.
## S3 method for class 'ff'
physical(x)
## S3 method for class 'ff'
virtual(x)
## S3 replacement method for class 'ff'
physical(x) <- value
## S3 replacement method for class 'ff'
virtual(x) <- value
x |
an ff object |
value |
a list with named elements |
ff objects have physical and virtual attributes, which have different copying semantics:
physical attributes are shared between copies of ff objects while virtual attributes might differ between copies.
as.ram
will retain some physical and virtual atrributes in the ram clone,
such that as.ff
can restore an ff object with the same attributes.
physical
and virtual
returns a list with named elements
Jens Oehlschlägel
physical.ff
, physical.ffdf
, ff
, as.ram
;
is.sorted
and na.count
for applications of physical attributes;
levels.ff
and ramattribs
for applications of virtual attributes
x <- ff(1:12)
x
physical(x)
virtual(x)
y <- as.ram(x)
physical(y)
virtual(y)
rm(x,y); gc()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.