All Projects → Lissy93 → Twitter Sentiment Visualisation

Lissy93 / Twitter Sentiment Visualisation

🌍 The R&D of a sentiment analysis module, and the implementation of it on real-time social media data, to generate a series of live visual representations of sentiment towards a specific topic or by location in order to find trends.

Programming Languages

coffeescript
4710 projects

Projects that are alternatives of or similar to Twitter Sentiment Visualisation

Twitter Sent Dnn
Deep Neural Network for Sentiment Analysis on Twitter
Stars: ✭ 270 (+104.55%)
Mutual labels:  sentiment-analysis, twitter
Stocksight
Stock market analyzer and predictor using Elasticsearch, Twitter, News headlines and Python natural language processing and sentiment analysis
Stars: ✭ 1,037 (+685.61%)
Mutual labels:  sentiment-analysis, twitter
Awesome Twitter Data
A list of Twitter datasets and related resources.
Stars: ✭ 533 (+303.79%)
Mutual labels:  sentiment-analysis, twitter
R
Sentiment analysis and visualization of real-time tweets using R
Stars: ✭ 127 (-3.79%)
Mutual labels:  sentiment-analysis, twitter
Tia
Your Advanced Twitter stalking tool
Stars: ✭ 98 (-25.76%)
Mutual labels:  sentiment-analysis, twitter
TwEater
A Python Bot for Scraping Conversations from Twitter
Stars: ✭ 16 (-87.88%)
Mutual labels:  twitter, sentiment-analysis
Twitter sentiment analysis word2vec convnet
Twitter Sentiment Analysis with Gensim Word2Vec and Keras Convolutional Network
Stars: ✭ 24 (-81.82%)
Mutual labels:  sentiment-analysis, twitter
Stocktalk
Data collection tool for social media analytics
Stars: ✭ 765 (+479.55%)
Mutual labels:  sentiment-analysis, twitter
Twitter Sentiment Analysis
This script can tell you the sentiments of people regarding to any events happening in the world by analyzing tweets related to that event
Stars: ✭ 94 (-28.79%)
Mutual labels:  sentiment-analysis, twitter
Orange3 Text
🍊 📄 Text Mining add-on for Orange3
Stars: ✭ 83 (-37.12%)
Mutual labels:  sentiment-analysis, twitter
sentiment-thermometer
Measure the sentiment towards a word, name or sentence on social networks
Stars: ✭ 56 (-57.58%)
Mutual labels:  twitter, sentiment-analysis
Stock Market Prediction Web App Using Machine Learning And Sentiment Analysis
Stock Market Prediction Web App based on Machine Learning and Sentiment Analysis of Tweets (API keys included in code). The front end of the Web App is based on Flask and Wordpress. The App forecasts stock prices of the next seven days for any given stock under NASDAQ or NSE as input by the user. Predictions are made using three algorithms: ARIMA, LSTM, Linear Regression. The Web App combines the predicted prices of the next seven days with the sentiment analysis of tweets to give recommendation whether the price is going to rise or fall
Stars: ✭ 101 (-23.48%)
Mutual labels:  sentiment-analysis, twitter
Tweetfeels
Real-time sentiment analysis in Python using twitter's streaming api
Stars: ✭ 249 (+88.64%)
Mutual labels:  sentiment-analysis, twitter
hashformers
Hashformers is a framework for hashtag segmentation with transformers.
Stars: ✭ 18 (-86.36%)
Mutual labels:  twitter, sentiment-analysis
Datastories Semeval2017 Task4
Deep-learning model presented in "DataStories at SemEval-2017 Task 4: Deep LSTM with Attention for Message-level and Topic-based Sentiment Analysis".
Stars: ✭ 184 (+39.39%)
Mutual labels:  sentiment-analysis, twitter
Sarcasm Detection
Detecting Sarcasm on Twitter using both traditonal machine learning and deep learning techniques.
Stars: ✭ 73 (-44.7%)
Mutual labels:  sentiment-analysis, twitter
Learning Social Media Analytics With R
This repository contains code and bonus content which will be added from time to time for the book "Learning Social Media Analytics with R" by Packt
Stars: ✭ 102 (-22.73%)
Mutual labels:  sentiment-analysis, twitter
Labeled Tweet Generator
Search for tweets and download the data labeled with its polarity in CSV format
Stars: ✭ 111 (-15.91%)
Mutual labels:  sentiment-analysis, twitter
Absa keras
Keras Implementation of Aspect based Sentiment Analysis
Stars: ✭ 126 (-4.55%)
Mutual labels:  sentiment-analysis
Camel tools
A suite of Arabic natural language processing tools developed by the CAMeL Lab at New York University Abu Dhabi.
Stars: ✭ 124 (-6.06%)
Mutual labels:  sentiment-analysis

Twitter Sentiment Visualisations

Build Status Dependency Status devDependency Status Code Climate Maintenance Codacy Badge stable

trello Stack Share npm Join the chat at https://gitter.im/Lissy93/twitter-sentiment-visualisation

A web app that uses data from Twitter combined with sentiment analysis and emotion detection to create a series of data visualisations to illustrate the happy and less happy locations, topics and times.

Introduction

This project aims to make Twitter data more understandable. It streams real-time tweets, or can fetch tweets about a specific topic or keyword - it then analyses this data using a custom-written sentiment analysis algorithm, and finally displays the results with a series of dynamic D3.js data visualisations.

The aim of the app is to allow trends to be found between sentiment and other factors such as geographical location, time of day, other topics...

It has a wide range of uses, from analysing the effectiveness of a marketing campaign, to comparing two competing topics.

Read more about the application here.

The application is fully documented, which can be viewed here

Live Application

A live demo of the application has been deployed to: http://sentiment-sweep.com

Screen Shots

As part of the documentation there is one shot of each screen in it's current state. View screen shots here

Below is a sample of the 12 key screens. Overview of screenshots

Modules

Several open source node modules have been developed and published on npm as part of this project

  • sentiment-analysis - useses the AFINN-111 word list to calculate overall sentiment of a sentence
  • fetch-tweets - fetches tweets from Twitter based on topic, location, timeframe or combination
  • stream-tweets - streams live Tweets in real-time
  • remove-words - removes all non-key words from a string sentence
  • place-lookup - finds the latitude and longitude for any fuzzy place name using the Google Places API
  • hp-haven-sentiment-analysis - A Node.js client library for HP Haven OnDemand Sentiment Analysis module
  • haven-entity-extraction - Node.js client for HP Haven OnDemand Entity Extraction
  • tweet-location - calculates the location from geo-tagged Tweets using the Twitter Geo API
  • find-region-from-location - given a latitude and longitude calculates which region that point belongs in

Project Planning

Running Locally

  1. Prerequisites - You will need Node.js, MongoDB and git installed on your system. You will also need Gulp and Bower, which (once node is installed) you can install by running npm install gulp bower -g. Also Yarn is recommended.

  2. Get the files - git clone https://github.com/Lissy93/twitter- sentiment-visualisation.git then navigate into it with cd twitter-sentiment-visualisation

  3. Install dependencies - yarn will install the npm node_modules, then should automatically kick off a bower install (if not, then just run it manually). If you are developing, you will need to use npm install in order to get the devDependencies too.

  4. Set Config yarn run config will generate the config\src\keys.coffee file, which you will then need to populate with your API keys and save. Also check that your happy with the general app config in config/src/app-config.coffee.

  5. Build Project - yarn run build will compile the project, from the source.

  6. Start MongoDB - mongod will start a MongoDB instance (run in separate terminal instance). See instructions: Starting a MongoDB instance.

  7. Run the project - Run yarn start then open your browser and navigate to http://localhost:8080

View detailed installation instructions

To run the tests: npm test or see the more test strategy

To run in development mode, use yarn run dev. This will use dev environmental variables, and also will watch for changes, lint, compile and refresh automatically.

Automated Development Workflow

TSV uses the Gulp streaming build tool to automate the development workflow.

The key tasks you need to run are:

  • gulp generate-config - before first-time running of the project, run this command to generate configuration files for your API keys
  • gulp build - This will build the project fully, this includes cleaning the working directory and then all tasks that must happen for CoffeeScript, JavaScript, CSS, images, HTML and Browserify tasks.
  • gulp nodemon - Runs the application on the default port (probably 8080)
  • gulp test - This will run all unit and coverage tests, printing a summary of the results to the console and generating more detailed reports into the reports directory.
  • gulp - this is the default task, it will check the project is configured correctly, build ALL the files, run the server, watch for changes, recompile relevant files and reload browsers on change, and keep all browsers in sync, when a test condition changes it will also re-run tests - a lot going on!

To read more about the project setup and gulp process, see build environment in the docs

Test Strategy

Twitter Sentiment Visualisation follows the TDD approach and is structured around it's unit tests.

To run tests: npm test

Testing Tools

More details on each of the tools and how they will be implemented along with the pass and fail criteria can be found on the test strategy page of the documentation.

The Stack

This project wouldn't have been possible at all without making use of many many open source packages, libraries, frameworks etc..

I would like to personally thank the hundreds of developers who have worked on open source packages like these.

There is an extensive stack of technologies that were used to develop the final application. The following list is a summary of the key utilities:

The Stack

Documentation

Project Information

Project Introduction

Addressing Potential Risks

System Development Life Cycle

Licence


Project Planning

User Stories

Complexity Estimates

High Level UML

Methodology - frontend

Test Strategy


Development Documentation

Installation Instructions

Build Environment

Testing


Research

The current sentiment analysis scene

Comparison of various sentiment analysis algorithm approaches

References

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].