dplyr (version 0.1.1)

tbl_dt: Create a data table tbl.

Description

A data table tbl wraps a local data table.

Usage

tbl_dt(data)

Arguments

data
a data table

Examples

Run this code
if (require("data.table")) {
ds <- tbl_dt(mtcars)
ds
as.data.table(ds)
as.tbl(mtcars)
}

Run the code above in your browser using DataCamp Workspace