tbl {implyr} | R Documentation |
Create a lazy tbl
from an Impala table
Description
Create a lazy tbl
from an Impala table
Usage
## S3 method for class 'src_impala'
tbl(src, from, ...)
Arguments
src |
an object with class with class |
from |
a table name or identifier |
... |
not used |
Value
An object with class tbl_impala
, tbl_sql
,
tbl_lazy
, tbl
See Also
Examples
## Not run:
flights_tbl <- tbl(impala, "flights")
flights_tbl <- tbl(impala, in_schema("nycflights13", "flights"))
## End(Not run)
[Package implyr version 0.5.0 Index]