dm_get_tables {dm} | R Documentation |
Get tables
Description
dm_get_tables()
returns a named list of dplyr tbl objects
of a dm
object.
Usage
dm_get_tables(x, ..., keyed = FALSE)
Arguments
x |
A |
... |
These dots are for future extensions and must be empty. |
keyed |
Set to |
Value
A named list with the tables (data frames or lazy tables)
constituting the dm
.
See Also
dm()
and new_dm()
for constructing a dm
object from tables.
Examples
dm_nycflights13() %>%
dm_get_tables()
dm_nycflights13() %>%
dm_get_tables(keyed = TRUE)
dm_nycflights13() %>%
dm_get_tables(keyed = TRUE) %>%
new_dm()
[Package dm version 1.0.10 Index]