Description Usage Arguments Value Examples
Get all submission ids. Requires data in the form returned from 'make_tidier_table()'.
1 |
data |
Dataframe with at least three columns, 'form_data_id', 'section', and 'response'. |
A vector of the submission names.
1 2 3 4 5 6 7 8 9 10 11 | data <- tibble::tribble(
~variables, ~sub1, ~sub2,
"naming.first_name", "Mel", "Jimothy",
"naming.last_name", "Jovin", "Smithery",
"exercise.pushups.min", "10", NA,
"exercise.pushups.max", "20", NA,
"exercise.pullups.reps.min", "1", NA,
"exercise.pullups.reps.max", "2", NA
)
data <- make_tidier_table(data)
get_submission_ids(data)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.