You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

sentiment-alyze

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sentiment-alyze

Textual analysis tools for JavaScript.

2.0.0
latest
Source
npmnpm
Version published
Weekly downloads
28
Maintainers
1
Weekly downloads
 
Created
Source

Build Status

sentiment-alyze

Node package for conducting textual analysis. The sentimentalyze method takes a string as its argument and returns a sentiment score calculated using AFINN-111. The termFrequency method also takes a string as its argument and returns an object with the count of words in that string. Filtering out English stop-words is optional.

Porter stemming algorithm reduces tokens to base, e.g. 'run', 'running', and 'runs' will all convert to 'run'.

Values of words in AFINN-111 range between -5 and +5.

##Installation: npm install --save sentiment-alyze

##Usage:

var sA = require('sentiment-alyze'),
    string = 'This string is super awesome! I feel like running and shopping',
    sentimentScore = sA.sentimentalyze(string),
    termFrequency  = sA.termFrequency(string),
    termFrequencyNoStopWords = sA.termFrequency(string, {stopWords: 'no'}),
    termFrequencyPorterized = sA.termFrequency(string, {stopWords: 'no', stem: 'yes'}),
    phrases = [
               'Virgina Woolf wrote To the Lighthouse',
               'Virginia Woolf was an English author who lived in London.',
               'Virginia Woolf lived in London. London was important to her. '],
    tfIDF = sA.tfIDF(phrases);


    console.log('sentiment score ', sentimentScore, 'term frequency, all words ', termFrequency, 'term frequency, no stop words ', termFrequencyNoStopWords, 'porterized ', termFrequencyPorterized);
    console.log('term frequency-inverse document frequency ', tfIDF);

##Tests

npm test;

###Contributing

Fork, clone, lint, test, pull :-)

FAQs

Package last updated on 04 Mar 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts