I have imported a CSV file into a dataframe in R and one of the columns contains Text.
I want to perform analysis on the text. How do I go about it?
I tried making a new dataframe containing only the text column.
OnlyTXT= Txtanalytics1 %>%
select(problem_note_text)
View(OnlyTXT).
This could get you started.
The following assumes your text variable (your OnlyTXT) is in data frame "df" labeled "text".
There is much more you can do with the
tm
package or theqdap
package.