Sha256: 02d5318b9cf32988174970fd3287b751cc88a520532063d76f20d9575dd1c3b4

Contents?: true

Size: 834 Bytes

Versions: 5

Compression:

Stored size: 834 Bytes

Contents

# SadPanda

sad_panda is a gem featuring tools for sentiment analysis of natural language: positivity/negativity and emotion classification.

Emotion Range: "anger", "disgust", "joy", "surprise", "fear", "sadness"

Polarity Range: -2 to 2

## Installation

Add this line to your application's Gemfile:

    gem 'sad_panda'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install sad_panda

## Usage

		require 'sad_panda'

		my_message = SadPanda::StatusMessage.new "my lobster collection makes me happy!"

		my_message.emotion
		=> "joy"

		my_message.polarity
		=> 0.5

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
sad_panda-0.1.3 README.md
sad_panda-0.1.2 README.md
sad_panda-0.1.1 README.md
sad_panda-0.1.0 README.md
sad_panda-0.0.9 README.md