is.open | R Documentation |
Test whether an ff or ffdf object or a ff_pointer
is opened.
is.open(x, ...)
## S3 method for class 'ff'
is.open(x, ...)
## S3 method for class 'ffdf'
is.open(x, ...)
## S3 method for class 'ff_pointer'
is.open(x, ...)
x |
an |
... |
further arguments (not used) |
ff objects open automatically if accessed while closed.
For ffdf objects we test all of their physical
components including their row.names
if they are is.ff
TRUE or FALSE (or NA if not all components of an ffdf object are opened or closed)
Jens Oehlschlägel
is.readonly
, open.ff
, close.ff
x <- ff(1:12)
is.open(x)
close(x)
is.open(x)
rm(x); gc()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.