Sentiment Package for sentiment analysis

I hope to do some sentiment analysis. However, sentiment package is no longer available. Where can I install sentiment package for the newest version of R?

Take a look here for possible alternatives - https://cran.r-project.org/web/views/NaturalLanguageProcessing.html.
Which package are you trying to install and what error are you getting?

install.packages("sentiment")
#> Warning: package 'sentiment' is not available (for R version 3.5.3)

I think you should check https://www.tidytextmining.com/sentiment.html

The sentiment package is not available for your version of R. If you go to look for the package on CRAN, you'll see the following;


You can find the archived versions, as mentioned, here. I wouldn't count on it working, though, as it's seven years, and many R-versions old.

However, as @mishabalyasin pointed to, there is a task view for Natural Language Processing that includes several packages that are actively maintained that do sentiment analysis (see the link from @rafaelmenmell for a nice intro to doing sentiment analysis with tidytext).

The following are packages in the task view that contain the word sentiment, but there are certainly more packages that accomplish the same/similar things.

  • tidytext provides means for text mining for word processing and sentiment analysis using dplyr, ggplot2, and other tidy tools.
  • mscstexta4r provides an interface to the Microsoft Cognitive Services Text Analytics API and can be used to perform sentiment analysis, topic detection, language detection, and key phrase extraction.
  • textir is a suite of tools for text and sentiment mining
2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.