I am encountering an issue with applying the textstat_readability function to a DF column. Following several lines of cleaning tweet text (~ 53K observations), I apply the text_readability function to create a new column called $Flesch from the $cleantext column:
measlestweets_readability$read_flesch<-(textstat_readability(measlestweets_readability$cleantext,measure = "Flesch"))$Flesch
Error Message: The resulting error is: "Error in set(x, j = name, value = value) : Supplied 53380 items to be assigned to 53381 items of column 'read_flesch'. If you wish to 'recycle' the RHS please use rep() to make this intent clear to readers of your code."
What does this error code mean and how can I begin to resolve it? Thanks in advance.