Description Usage Arguments Value See Also Examples
View source: R/createIgnoreWords.R
List Ignored Words
1 | createIgnoreWords(wordsList = c(), addToExisting = TRUE)
|
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. |
Returns an array of words that will be ignored when processing the semantic groups.
Other Simplified Process:
analyseStories()
,
reportStories()
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.