as.ffdf {ff} | R Documentation |
Coercing to ffdf and data.frame
Description
Functions for coercing to ffdf and data.frame
Usage
as.ffdf(x, ...)
## S3 method for class 'ff_vector'
as.ffdf(x, ...)
## S3 method for class 'ff_matrix'
as.ffdf(x, ...)
## S3 method for class 'data.frame'
as.ffdf(x, vmode=NULL, col_args = list(), ...)
## S3 method for class 'ffdf'
as.data.frame(x, ...)
Arguments
x |
the object to be coerced |
vmode |
optional specification of the |
col_args |
further arguments; passed to |
... |
further arguments; passed to |
Value
'as.ffdf' returns an object of class ffdf
, 'as.data.frame' returns an object of class data.frame
Author(s)
Jens Oehlschlägel
See Also
Examples
d <- data.frame(x=1:26, y=letters, z=Sys.time()+1:26, stringsAsFactors = TRUE)
ffd <- as.ffdf(d)
stopifnot(identical(d, as.data.frame(ffd)))
rm(ffd); gc()
[Package ff version 4.0.12 Index]