Description Usage Arguments Value Currently allowed input Examples
This function downloads current AirTable data
1 2 3 4 5 6 7 8 9 |
key |
key for AirTable API |
tables |
specify which tables you want to download |
clean |
clean dataset and construct measures (only works for Assessment V6 and V7) |
file |
specify path to download to (only works for Assessment V6 and V7) |
a list with (several) dataframe(s)
"AssessmentV6"
"AssessmentV7"
"AccessCodes"
"ParticipantProgress"
"ParticipantProgress2"
"InstructorSurveyV2"
"TechnicalInquiries"
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #Here is a code example that will download Assessment V6,
#clean it, save it into a folder called "Data" under
#Research and filter down to only include V6.1 data.
key <- readr::read_lines("../../Research/Projects/Keys/airtabler.txt")
assessmentv6 <- om_download_at(key,
tables = "AssessmentV6",
clean = TRUE,
file = "../../../Data/assessmentv6.1.csv",
v6.1 = TRUE)
#Here is another example code for downloading a clean version of Assessment v7:
assessmentv7 <- om_download_at(key,
tables = "AssessmentV7",
clean = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.