Nothing
# not exported
# returns a list with call performed on each element of "list" where "list" is an edsurvey.data.frame.list
#' @author Paul Bailey
itterateESDFL <- function(call, list) {
lapply(list$data, function(li) {
call$data <- li
tryCatch(eval(call),
error = function(cond) {
message(paste("An error occurred while working on a dataset. Excluding results from this dataset."))
message(cond)
# returning zero allows unlist and other operations that remove e.g. NULLs
return(0)
}
)
})
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.