SetHITAsReviewing: Set HIT as "Reviewing"

Description Usage Arguments Details Value Author(s) References See Also Examples

Description

Update the review status of a HIT, from “Reviewable” to “Reviewing” or the reverse.

Usage

1
2
3
SetHITAsReviewing(hit = NULL, hit.type = NULL, annotation = NULL,
                  revert = FALSE, 
                  verbose = getOption('MTurkR.verbose', TRUE), ...)

Arguments

hit

An optional character string containing a HITId, or a vector character strings containing HITIds, whose status are to be changed. Must specify hit xor hit.type xor annotation.

hit.type

An optional character string specifying a HITTypeId (or a vector of HITTypeIds), all the HITs of which should be set as “Reviewing” (or the reverse). Must specify hit xor hit.type xor annotation.

annotation

An optional character string specifying the value of the RequesterAnnotation field for a batch of HITs. This can be used to set the review status all HITs from a “batch” created in the online Requester User Interface (RUI). To use a batch ID, the batch must be written in a character string of the form “BatchId:78382;”, where “73832” is the batch ID shown in the RUI. Must specify hit xor hit.type xor annotation.

revert

An optional logical to revert the HIT from “Reviewing” to “Reviewable”.

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.

Details

A function to change the status of one or more HITs (or all HITs of a given HITType) to “Reviewing” or the reverse. This affects what HITs are returned by GetReviewableHITs. Must specify a HITId xor a HITTypeId.

reviewing() is an alias.

Value

A data frame containing HITId, status, and whether the request to change the status of each was valid.

Author(s)

Thomas J. Leeper

References

API Reference

See Also

GetReviewableHITs

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## Not run: 
a <- GenerateExternalQuestion("http://www.example.com/","400")
hit1 <- 
CreateHIT(hit.type="2FFNCWYB49F9BBJWA4SJUNST5OFSOW", question=a$string)
SetHITAsReviewing(hit1$HITId)

# cleanup
DisableHIT(hit1$HITId)

## End(Not run)

leeper/MTurkR documentation built on June 6, 2019, 7:38 a.m.