Popularity
2.4
Declining
Activity
0.0
Stable
9
5
1
Monthly Downloads: 1
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.
-
Plausible Analytics
Simple, open source, lightweight (< 1 KB) and privacy-friendly web analytics alternative to Google Analytics. -
numerix
A collection of useful mathematical functions in Elixir with a slant towards statistics, linear algebra and machine learning -
Statistex
Calculate statistics on data sets, reusing previously calculated values or just all metrics at once. Part of the benchee library family. -
simple_stat_ex
Simple Stat Ex can be used to keep counters around hourly daily or other activity for an elixir project
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of descriptive_statistics or a related project?
README
Descriptive Statistics
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.