Nothing
#' Get a participant property from a LimeSurvey survey
#'
#' This function exports and downloads a participant property from a
#' LimeSurvey survey. It was
#' adapted by Gjalt-Jorn Peters from a function originally written by Andrew
#' Heiss.
#'
#' @param iSurveyID \dots
#' @param aTokenQueryProperties \dots
#' @param aTokenProperties \dots
#' @export
#' @examples \dontrun{
#' limer_get_participant_property(
#' iSurveyID = 12345,
#' aTokenQueryProperties = 1,
#' aTokenProperties = list("attribute_1")
#' );
#' }
limer_get_participant_property <- function(iSurveyID, aTokenQueryProperties, aTokenProperties) {
params <- as.list(environment())
result <- limer_call_limer(method = "get_participant_properties", params = params)
return(result)
}
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.