mergeNestedODK | R Documentation |
Retrieve parent data, matching to a nested (child) dataset by keys of a nested dataset exported from an ODK Aggregate Server.
mergeNestedODK(
parent,
child,
byPARENT_KEY = TRUE,
removeCols = NULL,
removeRows = NULL
)
parent |
Data frame of household data |
child |
Data frame of child (repeat) data |
byPARENT_KEY |
Should data frames be matched based on PARENT_KEY (child) and KEY (parent) columns? (Currently only option is TRUE) |
removeCols |
Character vector of column names to remove from the parent data frame (optional) |
removeRows |
Index of which rows should be removed from child data frame (optional) |
Merged dataframe
# merge sampleData2 and sampleData3
x <- renameODK(sampleData2)
y <- renameODK(sampleData3)
temp <- mergeNestedODK(parent = x, child = y, byPARENT_KEY = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.