0

What could possibly be the cause of this problem? The library selected are tm, NLP and snowballC. The error came up when I used this command

comments_corpus<-VCorpus(DataframeSource(txt))

I'm doing a project on employee satisfaction

Martin Gal
  • 16,640
  • 5
  • 21
  • 39

1 Answers1

0

You will have to load the tm package prior to running this code.

library(tm)

Nic
  • 1