Learn R Programming

MTurkR (version 0.8.0)

GetReviewableHITs: Get Reviewable HITs

Description

Get HITs that are currently reviewable.

Usage

GetReviewableHITs(hit.type = NULL, status = NULL, response.group = "Minimal", 
                  return.all = TRUE, pagenumber = "1", pagesize = "10", 
                  sortproperty = "Enumeration", sortdirection = "Ascending", 
                  verbose = getOption('MTurkR.verbose', TRUE), ...)

Arguments

hit.type

An optional character string containing a HITTypeId to consider when looking for reviewable HITs.

status

An optional character string of either “Reviewable” or “Reviewing” limiting the search to HITs of with either status.

response.group

A character string specifying what details of each HIT to return. API currently only supports “Minimal”. For more information, see Common Parameters and HIT Data Structure.

return.all

A logical indicating whether all QualificationTypes (as opposed to a specified page of the search results) should be returned. Default is TRUE.

pagenumber

An optional character string indicating which page of search results should be returned. Most users can ignore this.

pagesize

An optional character string indicating how many search results should be returned by each request, between 1 and 100. Most users can ignore this.

sortproperty

One of “Title”, “Reward”, “Expiration”, “CreationTime”, “Enumeration”. Ignored if return.all=TRUE. Most users can ignore this.

sortdirection

Either “Ascending” or “Descending”. Ignored if return.all=TRUE. Most users can ignore this.

verbose

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.

Value

A data frame containing only a column of HITIds.

Details

A simple function to return the HITIds of HITs currently in “Reviewable” or “Reviewing” status. To retrieve additional details about each of these HITs, see GetHIT. This is an alternative to SearchHITs.

reviewable() is an alias.

References

API Reference

See Also

GetHIT

GetHITsForQualificationType

SearchHITs

Examples

Run this code
# NOT RUN {
GetReviewableHITs()
# }

Run the code above in your browser using DataLab