Skip to contents

This function allows storing additional values to be included in the survey data, such as respondent IDs or other data.

Usage

sd_store_value(value, id = NULL)

Arguments

value

The raid value to be stored.

id

(Optional) The id (name) of the value in the data. If not provided, the id of the value variable will be used.

Value

NULL (invisibly)

Examples

if (FALSE) { # \dontrun{
  sd_store_value(respondentID)
  sd_store_value(respondentID, "respID")
} # }