Socket
Socket
Sign inDemoInstall

sentiment-alyze

Package Overview
Dependencies
0
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    sentiment-alyze

Textual analysis tools for JavaScript.


Version published
Weekly downloads
2
increased by100%
Maintainers
1
Install size
66.8 kB
Created
Weekly downloads
 

Readme

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

Last updated on 04 Mar 2018

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc