UpdateQualificationType(qual, description = NULL, status = NULL,
retry.delay = NULL, test = NULL, answerkey = NULL,
test.duration = NULL,
validate.test = FALSE, validate.answerkey = FALSE,
auto = NULL, auto.value = NULL,
verbose = getOption('MTurkR.verbose', TRUE), ...)
test
parameter should be validated against the relevant MTurk schema prior to creating the QualificationType (operation will fail if it does not validate, and will return validation information). Default is answerkey
parameter should be validated against the relevant MTurk schema prior to creating the QualificationType (operation will fail if it does not validate, and will return validation information). Default FALSE
.getOption('MTurkR.verbose', TRUE)
.request
.updatequal()
is an alias.GetQualificationType
CreateQualificationType
DisposeQualificationType
SearchQualificationTypes
qual1 <-
CreateQualificationType(name="Worked for me before",
description="This qualification is for people who have worked for me before",
status = "Active",
keywords="Worked for me before")
qual2 <-
UpdateQualificationType(qual1$QualificationTypeId,
description="This qualification is for everybody!",
auto=TRUE, auto.value="5")
DisposeQualificationType(qual1$QualificationTypeId)
Run the code above in your browser using DataLab