Open
Description
I wonder if it's possible to row append a dataset directly to a dataset stored on disk?
currenlty to append two dataframes together I need to do
a <- read.fst(file1, as.data.table=T)
b <- read.fst(file2, as.data.table=T)
write.fst(file3,rbindlist(list(a,b)))
If both a
and b
are large then R may run out memory. So it would prefer to have a function to append.fst e.g.
append.fst(out_file, c(infile1, infile2))