Learn R Programming

genCountR (version 1.0.0)

text_clean: text_clean

Description

Cleans the supplied text string and converts it into a list of individual words.

Usage

text_clean(text)

Value

list of each word in all lower case and without punctuation.

Arguments

text

(string): A string object.

Details

Takes the string, converts all the characters to lower case, removes punctuation, and splits the string into individual words.