Sha256: d821acb06992f1a77a269d446fe022f512aa4019a89eb6ef415a0b11b2ee3161
Contents?: true
Size: 773 Bytes
Versions: 3
Compression:
Stored size: 773 Bytes
Contents
# Easystats [![Build Status](https://secure.travis-ci.org/mgrigajtis/easystats.png)](https://secure.travis-ci.org/mgrigajtis/easystats) > Created by [Matthew Grigajtis](http://www.matthewgrigajtis.com) Provides easy to use statistical functions to use on an array ## Install In your shell: ```sh gem install easystats ``` or in your Gemfile: ```rb gem 'easystats' ``` ## Example ```rb require 'easystats' array = [4, 8, 15, 16, 23, 42, 42] %w[ average median mode range standard_deviation sum variance ].each do |method| puts "#{method}: #{array.send(method.to_sym)}" end ``` This will result in: ```sh average: 21.428571428571427 median: 16 mode: 42 range: 38 standard_deviation: 15.295501984321435 sum: 150 variance: 200.53061224489798 ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
easystats-0.3.2 | README.md |
easystats-0.3.1 | README.md |
easystats-0.3.0 | README.md |