Nothing
#' Export list of participants from a LimeSurvey survey
#'
#' This function exports and downloads the list of participants from a LimeSurvey survey.
#' @param iSurveyID \dots
#' @param iStart \dots
#' @param iLimit \dots
#' @param bUnused \dots
#' @param aAttributes \dots
#' @export
#' @examples \dontrun{
#' limer_get_participants(12345, iStart=1, iLimit=10, bUnused=FALSE,
#' aAttributes=c('attribute_1','attribute_2'))
#' limer_get_participants(12345, iStart=1, iLimit=10, bUnused=FALSE, aAttributes=FALSE)
#' }
limer_get_participants <- function(iSurveyID, iStart, iLimit, bUnused, aAttributes){
# Put all the function's arguments in a list to then be passed to call_limer()
params <- as.list(environment())
results <- limer_call_limer(method = "list_participants", params = params)
return(data.frame(results))
}
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.