I\'m doing sentiment analysis from twitter but my tweets are on Spanish so I can\'t use tidytext to classify the words. Does anyone know if there is a similar package for Sp
I run into the same issue with Non-English textmining. I found udpipe
which is an r package developed by Bnosac. It is a Natural Language Processing toolkit that provides language-agnostic 'tokenization', 'parts of speech tagging', 'lemmatization', 'morphological feature tagging' and 'dependency parsing' of raw text. Beware that there are no sentiment tags in the package. Those you will need to find elsewhere.
It supports a diverse range of non-English languages.
You can find out more on their blog, on the webpage of udpipe or on github
P.S. I have no affiliation with them.