createIgnoreWords: List Ignored Words

Description Usage Arguments Value See Also Examples

View source: R/createIgnoreWords.R

Description

List Ignored Words

Usage

1
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

1
2
3
4
5
6
7
8
# Generating default words only
createIgnoreWords()

# Adding words
createIgnoreWords(c("given", "said"))

# Replacing words
createIgnoreWords(c("given", "said"), FALSE)

oRus documentation built on July 8, 2020, 5:17 p.m.