Trying to do some analysis of twitter data. Downloaded the tweets and created a corpus from the text of the tweets using the below
# Creating a Corpus wim_co
I had the same problem and it turns out it is an issue with package compatibility. Try installing
install.packages("SnowballC")
and load with
library(SnowballC)
before calling DocumentTermMatrix.
It solved my problem.