Skip to contents

Remove stop words

Usage

remove_stop_words(text)

Arguments

text

A character vector with length one containing the piece of text to analyze.

Value

A character vector containing words in the text that are not stop words.

Examples

text <- "Tomorrow is a big day!"
remove_stop_words(text)
#> [1] "tomorrow"
"tomorrow"
#> [1] "tomorrow"