I have a Corpus in R using the tm package. I am applying the removeWords function to remove stopwords
tm
removeWords
tm_map(abs, removeWords, stop
You could also use the textProcessor package. It works quite well:
textProcessor
textProcessor(documents, removestopwords = TRUE, customstopwords = NULL)