Evaluate an expression in a ffdf data environment
Evaluate an R expression in an environment constructed from a ffdf data frame.
(see with
). Please note that you should write
your expression as if it is a normal data.frame
. The resulting return value
however will be a ff
object.
## S3 method for class 'ffdf' with(data, expr, ...)
if expression is a vector
a newly created ff
vector will be returned
otherwise if the expression is a data.frame a newly created ffdf
object will be returned.
'with.ffdf' assumes that the returned object is of equal length as 'nrow(data)' and must be converted to a 'ff' object In case this is not true, the result won't be correct.
dat <- data.frame(x=1:10, y=10:1) ffdat <- as.ffdf(dat) with(ffdat, {x+y})
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.