Cleans the raw text into human readable text.

clean_text(text)

Arguments

text

A text to clean.

Value

'text' output without special characters, html_tags, #tags, contaction words, stop-words and convert everything to lower case

Examples

text <- "Early optimization is the root of all evil!"
clean_text(text)
#> [1] "early optimization root evil"