| get_forcedecks_data | R Documentation |
This function is intended for first-time use or a full refresh of all datasets. It retrieves profiles, result definitions, tests (from a specified start date), and trials.
get_forcedecks_data(start_date = NULL, include_attributes = FALSE)
start_date |
In ISO 8601 UTC format (e.g., "2025-06-25T00:00:00Z") indicating the start of the test retrieval window. |
include_attributes |
Logical; if TRUE, the returned list will include an
additional data frame |
A named list with data frames: profiles, result_definitions,
tests, and trials. If include_attributes = TRUE, the list also
contains test_attributes.
## Not run:
# Fetch all data (profiles, results, tests, trials)
data <- get_forcedecks_data()
View(data$profiles)
# Fetch all data including test attributes mapping
data_with_attrs <- get_forcedecks_data(include_attributes = TRUE)
View(data_with_attrs$test_attributes)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.