Popularity
2.5
Declining
Activity
0.0
Stable
9
5
1

Monthly Downloads: 4
Programming language: Elixir
License: MIT License
Tags: Statistics    

descriptive_statistics alternatives and similar packages

Based on the "Statistics" category.
Alternatively, view descriptive_statistics alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of descriptive_statistics or a related project?

Add another 'Statistics' Package

README

Descriptive Statistics

Build Status

Descriptive Statistics is a library that allows you to compute simple descriptive statistics in Elixir. Inspired by https://github.com/thirtysixthspan/descriptive_statistics.

Examples

$ iex -r lib/descriptive_statistics.ex 

iex(1)> DescriptiveStatistics.sum [1,2,3]
6
iex(2)> DescriptiveStatistics.sum [2, 6, 9, 3, 5, 1, 8, 3, 6, 9, 2]
54
iex(3)> DescriptiveStatistics.mean [2, 6, 9, 3, 5, 1, 8, 3, 6, 9, 2]
4.909090909090909
iex(4)> DescriptiveStatistics.median [2, 6, 9, 3, 5, 1, 8, 3, 6, 9, 2]
5

Author

Brought to you by Piotr Usewicz.