https://github.com/shatrunjai/ShinySentimentAnalysis
Shiny app for text analytics
https://github.com/shatrunjai/ShinySentimentAnalysis
Last synced: 4 months ago
JSON representation
Shiny app for text analytics
- Host: GitHub
- URL: https://github.com/shatrunjai/ShinySentimentAnalysis
- Owner: shatrunjai
- Created: 2017-01-05T18:46:05.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-21T20:22:45.000Z (about 8 years ago)
- Last Synced: 2024-08-13T07:12:55.473Z (8 months ago)
- Language: R
- Size: 33.2 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - shatrunjai/ShinySentimentAnalysis - Shiny app for text analytics (R)
README
# ShinySentimentAnalysis
Shiny app for John Hancock Text Analytics Core################################################################################################################
# Description: R code to create a shiny app for text analytics including sentiment analysis ####################
# Author: Shatrunjai P Singh ####################
# Date: 12/17/2016 ####################
# File: server.R file and ui.R file ####################
################################################################################################################
To run this app:
a) Open R, and
b) Type in the following commands:install.packages("shiny")
library(shiny)
runGitHub( "ShinySentimentAnalysis", "shatrunjai")
################################################################################################################
Here I use shiny to develop an app which can do the following:
- Perform sentiment analysis on words,
- Perform sentiment analysis at sentense level,
- Get sentiment across a document
- Creat word frequencies
- Create a word cloud
- Mark positive and negative lines within textI use sentimentr, worldcloud, topicmodeller and tm packages for this analysis.