List Ignored Words

createIgnoreWords(wordsList = c(), addToExisting = TRUE)

Arguments

wordsList

List of words to be ignored when grouping user stories semantically by similarities of word.

addToExisting

If this param is TRUE, passed words will be added to a predefined set of words. Otherwise, only those in the previous argument will be ignored.

Value

Returns an array of words that will be ignored when processing the semantic groups.

See also

Other Simplified Process: analyseStories(), reportStories()

Examples

# Generating default words only createIgnoreWords()
#> word #> 1 current #> 2 predefined #> 3 assigned #> 4 smaller #> 5 larger #> 6 percentage
# Adding words createIgnoreWords(c("given", "said"))
#> word.word word..given. word..said. #> 1 current given said #> 2 predefined given said #> 3 assigned given said #> 4 smaller given said #> 5 larger given said #> 6 percentage given said
# Replacing words createIgnoreWords(c("given", "said"), FALSE)
#> word #> 1 given #> 2 said