Query$to_data_table

Query$to_data_table(max_results=NULL, variables=NULL) → data.table

Returns a data.table representing the results of a query.

Parameters:

max_results : int, default NULL The max number of records to load into the datatable. If not specified, the entire query results will be loaded.

variables : list(str) | character vector The specific variables to return, e.g., variables = c("name", "date") . If not specified, all variables in the query results will be returned.

Returns:

data.table

Last updated