as.data.table.disk.frame {disk.frame}R Documentation

Convert disk.frame to data.table by collecting all chunks

Description

Convert disk.frame to data.table by collecting all chunks

Usage

## S3 method for class 'disk.frame'
as.data.table(x, keep.rownames = FALSE, ...)

Arguments

x

a disk.frame

keep.rownames

passed to as.data.table

...

passed to as.data.table

Examples

library(data.table)
cars.df = as.disk.frame(cars)
as.data.table(cars.df)

# clean up
delete(cars.df)

[Package disk.frame version 0.8.3 Index]