Search for available QualificationTypes, including yours and others available on the MTurk system created by other requesters.
SearchQualificationTypes(query = NULL, only.mine = TRUE, only.requestable = FALSE,
return.all = FALSE, pagenumber = "1", pagesize = "10",
sortproperty = "Name", sortdirection = "Ascending",
return.qual.dataframe = TRUE,
verbose = getOption('MTurkR.verbose', TRUE), ...)
An optional character string containing a search query to be used to search among available QualificationTypes.
A logical indicating whether only your QualificationTypes should be returned (the default). If FALSE
, QualificationTypes created by all requesters will be returned.
A logical indicating whether only requestable QualificationTypes should be returned. Default is FALSE
.
A logical indicating whether all QualificationTypes (as opposed to a specified page of the search results) should be returned. Default is TRUE
.
An optional character string indicating which page of search results should be returned. Most users can ignore this.
An optional character string indicating how many search results should be returned by each request, between 1 and 100. Most users can ignore this.
API currently only supports “Name”. Most users can ignore this.
Either “Ascending” or “Descending”. Ignored if return.all=TRUE
. Most users can ignore this.
A logical indicating whether the QualificationTypes should be returned as a data frame. Default is TRUE
.
Optionally print the results of the API request to the standard output. Default is taken from getOption('MTurkR.verbose', TRUE)
.
Additional arguments passed to request
.
A data frame containing the QualificationTypeId of the newly created QualificationType and other details as specified in the request.
Retrieve available QualificationTypes, optionally only those QualificationTypes created by you and/or those that meet specific search criteria specified in the query
parameter. Given that the total number of QualificationTypes available from all requesters could be infinitely large, specifying both only.mine=FALSE
and return.all=FALSE
will be time-consuming and may cause memory problems.
searchquals()
is an alias.
# NOT RUN {
SearchQualificationTypes(only.mine = TRUE,
return.all = TRUE)
SearchQualificationTypes(query = "MIT",
only.mine = FALSE,
return.all = FALSE)
# }
Run the code above in your browser using DataLab