Skip to content

fnielsen/afinn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

1d6dfd2 · Apr 4, 2022
Apr 4, 2022
Jun 24, 2021
Jul 17, 2015
Jun 24, 2021
Dec 2, 2017
Feb 2, 2016
Jul 20, 2015
Jul 20, 2015
May 8, 2017
Feb 24, 2022
Nov 10, 2015
Jun 23, 2021
Jan 8, 2019
Dec 3, 2017
Jun 23, 2021

Repository files navigation

afinn

AFINN sentiment analysis in Python: Wordlist-based approach for sentiment analysis.

How to install

>>> git clone https://github.com/fnielsen/afinn
>>> cd afinn
>>> python setup.py install

Examples

>>> from afinn import Afinn
>>> afinn = Afinn()
>>> afinn.score('This is utterly excellent!')
3.0

In Danish:

>>> afinn = Afinn(language='da')
>>> afinn.score('Hvis ikke det er det mest afskyelige flueknepperi...')
-6.0

In Finnish:

>>> afinn = Afinn(language='fi')
>>> afinn.score('Siellä on uusi hyvä juttu, katsokaa ja kuunnelkaa ihmeessä.')
3.0

In Swedish:

>>> afinn = Afinn(language='sv')
>>> afinn.score('det är inte bra')
-2.0

In Turkish:

>>> afinn = Afinn(language='tr')
>>> from six import u
>>> afinn.score(u('iyi de\u011Fil'))
-2.0
>>> afinn = Afinn(language='tr')
>>> afinn.score('iyi değil')
-2.0

With emoticons:

>>> afinn = Afinn(emoticons=True)
>>> afinn.score('I saw that yesterday :)')
2.0

With multiple sentences (here with data from an Austen novel available in Gutenberg):

>>> from afinn import Afinn
>>> from nltk.corpus import gutenberg
>>> import textwrap
>>> afinn = Afinn()
>>> sentences = (" ".join(wordlist) for wordlist in gutenberg.sents('austen-sense.txt'))
>>> scored_sentences = ((afinn.score(sent), sent) for sent in sentences)
>>> sorted_sentences = sorted(scored_sentences)
>>> print("\n".join(textwrap.wrap(sorted_sentences[0][1], 70)))
To attach myself to your sister , therefore , was not a thing to be
thought of ;-- and with a meanness , selfishness , cruelty -- which no
indignant , no contemptuous look , even of yours , Miss Dashwood , can
ever reprobate too much -- I was acting in this manner , trying to
engage her regard , without a thought of returning it .-- But one
thing may be said for me : even in that horrid state of selfish vanity
, I did not know the extent of the injury I meditated , because I did
not THEN know what it was to love .

Citation

If you as a scientist use the wordlist or the code please cite this one:

  • Finn Årup Nielsen, "A new ANEW: evaluation of a word list for sentiment analysis in microblogs", Proceedings of the ESWC2011 Workshop on 'Making Sense of Microposts': Big things come in small packages. Volume 718 in CEUR Workshop Proceedings: 93-98. 2011 May. Matthew Rowe, Milan Stankovic, Aba-Sah Dadzie, Mariann Hardey (editors)

Paper with supplement: http://www2.imm.dtu.dk/pubdb/views/edoc_download.php/6006/pdf/imm6006.pdf

See also

Travis et al.

https://travis-ci.com/fnielsen/afinn.svg?branch=master

https://coveralls.io/repos/fnielsen/afinn/badge.svg?branch=master:target:https://coveralls.io/github/fnielsen/afinn?branch=master

Downloads Open Hub