GetQualifications | R Documentation |
Get all Qualifications of a particular QualificationType assigned to Workers.
GetQualifications(
qual,
status = NULL,
results = as.integer(100),
pagetoken = NULL,
verbose = getOption("pyMTurkR.verbose", TRUE)
)
qual |
A character string containing a QualificationTypeId for a custom (i.e., not built-in) QualificationType. |
status |
An optional character string specifying whether only “Granted” or “Revoked” Qualifications should be returned. |
results |
An optional character string indicating how many results to fetch per page. Must be between 1 and 100. Most users can ignore this. |
pagetoken |
An optional character string indicating which page of search results to start at. Most users can ignore this. |
verbose |
Optionally print the results of the API request to the
standard output. Default is taken from |
A function to retrieve Qualifications granted for the specified
QualificationType. To retrieve a specific Qualification score (e.g., for one
worker), use GetQualificationScore
.
A practical use for this is with automatically granted QualificationTypes.
After workers request and receive an automatically granted Qualification
that is tied to one or more HITs, GetQualifications
can be used to
retrieve the WorkerIds for workers that are actively working on those HITs
(even before they have submitted an assignment).
getquals()
and ListWorkersWithQualificationType()
are aliases.
A data frame containing the QualificationTypeId, WorkerId, and Qualification scores of workers assigned the Qualification.
Tyler Burleigh, Thomas J. Leeper
GetQualificationScore
UpdateQualificationScore
## Not run:
qual1 <- AssignQualification(workers = "A1RO9UJNWXMU65",
name = "Worked for me before",
description = "This qualification is for people who have worked for me before",
status = "Active",
keywords = "Worked for me before")
GetQualifications(qual1$QualificationTypeId)
RevokeQualification(qual1$QualificationTypeId, qual1$WorkerId)
GetQualifications(qual1$QualificationTypeId, status="Revoked")
DisposeQualificationType(qual1$QualificationTypeId)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.