tbl {implyr} | R Documentation |
tbl
from an Impala tableCreate a lazy tbl
from an Impala table
## S3 method for class 'src_impala' tbl(src, from, ...)
src |
an object with class with class |
from |
a table name or identifier |
... |
not used |
An object with class tbl_impala
, tbl_sql
,
tbl_lazy
, tbl
## Not run: flights_tbl <- tbl(impala, "flights") flights_tbl <- tbl(impala, in_schema("nycflights13", "flights")) ## End(Not run)