Learn R Programming

koRpus (version 0.04-40)

clozeDelete: Transform text into cloze test format

Description

If you feed a tagged text object to this function, its text will be transformed into a format used for cloze deletion tests. That is, by default every fifth word (or as specified by every) will be replaced by a line. You can also set an offset value to specify where to begin.

Arguments

obj
An object of class "kRp.tagged"
every
Integer numeric, setting the frequency of words to be manipulated. By default, every fifth word is being transformed.
offset
Either an integer numeric, sets the number of words to offset the transformations. Or the special keyword "all", which will cause the method to iterate through all possible offset values and not return an object, but print the results
replace.by
Character, will be used as the replacement for the removed words.
fixed
Integer numberic, defines the length of the replacement (replace.by will be repeated this much times). If set to 0, the replacement wil be as long as the replaced word.

Value

  • And object of class kRp.tagged, with an additional list cloze in its desc slot, listing the words which were changed.

Details

The option offset="all" will not return one single object, but print the results after iterating through all possible offset values.