Description Usage Arguments Value See Also Examples
View source: R/atri_query_data.R
Read ATRI query data
1 | atri_query_data(protocol, collapsed = TRUE, datalake = TRUE)
|
protocol |
The protocol name (e.g. 'a345-test-1'). |
collapsed |
default is TRUE, which returns the most recent transaction of the query ID (only 1 row per query ID). With collapsed=FALSE, returns all historical query transactions. |
datalake |
default is TRUE, which returns data from the latest data extract from the data lake s3 archive topic. With datalake=FALSE, returns the current data using the public API (/public/api/v1/query/queries). |
A data.frame of the query data.
1 2 3 | query_data <- atri_query_data("a345-test-1")
query_data_all_transactions <- atri_query_data("a345-test-1", collapsed=FALSE)
query_data_live <- atri_query_data("a345-test-1",datalake=FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.