View source: R/utils-odk-central.R
central_results_to_df | R Documentation |
ODK central returns context in the form of a nested list. This converts this nested list into a more accessible tibble format
central_results_to_df(central_results)
central_results |
The nested list returned from a central query |
Rpackage file: utils-odk-central.R
A table of central results
central_results <- list(
list("id" = 1, "name" = "name1", "email" = "email1"),
list("id" = 2, "name" = "name2", "email" = "email2"),
list("id" = 3, "name" = "name3", "email" = "email3")
)
central_results_to_df(list(
list("id" = 1, "name" = "name1", "email" = "email1"),
list("id" = 2, "name" = "name2", "email" = "email2"),
list("id" = 3, "name" = "name3", "email" = "email3")
))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.