createIgnoreWords {oRus} | R Documentation |
List Ignored Words
Description
List Ignored Words
Usage
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()
# Adding words
createIgnoreWords(c("given", "said"))
# Replacing words
createIgnoreWords(c("given", "said"), FALSE)
[Package oRus version 1.0.0 Index]