read_tessi | R Documentation |
Thin wrapper on read_sql_table using the tables configured in list_tessi_tables
that also :
updates customer_no
based on merges and adds group_customer_no
based on tessi_customer_no_map()
read_tessi(
table_name,
select = NULL,
freshness = as.difftime(7, units = "days"),
incremental = TRUE,
...
)
table_name |
character name of the table to read from Tessitura, either one of the available tables (see |
select |
vector of strings indicating columns to select from database |
freshness |
the returned data will be at least this fresh |
incremental |
whether or not to load data incrementally, default is |
... |
further arguments to be passed to read_sql_table |
an Apache arrow::Table.
## Not run:
read_tessi("memberships",
select = c("memb_level", "customer_no")
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.