All Projects → pugulist → math-stats

pugulist / math-stats

Licence: MIT License
A small library that does the statistics for your numbers.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to math-stats

Stdlib
✨ Standard library for JavaScript and Node.js. ✨
Stars: ✭ 2,749 (+15172.22%)
Mutual labels:  statistics, mathematics, stats
HADailySensor
Sensor for Home Assistant that gets reset at midnight
Stars: ✭ 20 (+11.11%)
Mutual labels:  mean, median, standard-deviation
Npm Stats
📈 npm package statistics dashboard build with vue
Stars: ✭ 106 (+488.89%)
Mutual labels:  statistics, stats
Streaker
🔥 GitHub contribution streak & stat tracking menu bar app
Stars: ✭ 131 (+627.78%)
Mutual labels:  statistics, stats
Math Php
Powerful modern math library for PHP: Features descriptive statistics and regressions; Continuous and discrete probability distributions; Linear algebra with matrices and vectors, Numerical analysis; special mathematical functions; Algebra
Stars: ✭ 2,009 (+11061.11%)
Mutual labels:  statistics, mathematics
Pypistats
Command-line interface to PyPI Stats API to get download stats for Python packages
Stars: ✭ 86 (+377.78%)
Mutual labels:  statistics, stats
Root
The official repository for ROOT: analyzing, storing and visualizing big data, scientifically
Stars: ✭ 1,377 (+7550%)
Mutual labels:  statistics, mathematics
Css Analyzer
Analytics for CSS
Stars: ✭ 146 (+711.11%)
Mutual labels:  statistics, stats
Fermat.js
Mathematics and statistics library for TypeScript.
Stars: ✭ 74 (+311.11%)
Mutual labels:  statistics, mathematics
Scikit Posthocs
Multiple Pairwise Comparisons (Post Hoc) Tests in Python
Stars: ✭ 186 (+933.33%)
Mutual labels:  statistics, stats
Stat
Statistics package for Go [DEPRECATED]
Stars: ✭ 198 (+1000%)
Mutual labels:  statistics, stats
Memcache Info
Simple and efficient way to show information about Memcache.
Stars: ✭ 84 (+366.67%)
Mutual labels:  statistics, stats
Superseriousstats
superseriousstats is a fast and efficient program to create statistics out of various types of chat logs
Stars: ✭ 78 (+333.33%)
Mutual labels:  statistics, stats
Devstats
📊 A CLI application that fetches stats from developer sites
Stars: ✭ 105 (+483.33%)
Mutual labels:  statistics, stats
Github Traffic
Get the Github traffic for the specified repository
Stars: ✭ 77 (+327.78%)
Mutual labels:  statistics, stats
Gameday api
A Ruby API for using the Major League Baseball Gameday statistics data. MLB provides very deep statistics for all major league baseball games through Gameday. Statistics include not only the typical boxscore stats, but also down to the physics of every single pitch thrown in the game. You can find the speed, movement, and position of every pitch thrown. The Gameday API makes it easy for Ruby developers to work with all this statistical information. The test directory included with the source code contains many examples of how the API can be used. If you prefer to use SVN, the gameday_api is also available via an SVN repository at: http://code.google.com/p/gamedayapi/ If you like this project, be sure to also check out the Baseball-Tracker project also hosted on GitHub. Baseball-Tracker is a web application that uses the gameday_api. You can find a hosted version of Baseball Tracker at http://baseballstatz.heroku.com
Stars: ✭ 137 (+661.11%)
Mutual labels:  statistics, stats
Pycm
Multi-class confusion matrix library in Python
Stars: ✭ 1,076 (+5877.78%)
Mutual labels:  statistics, mathematics
Ruby Statistics
Ruby gem for some statistical operations without any statistical language dependency
Stars: ✭ 67 (+272.22%)
Mutual labels:  statistics, stats
Stats
A well tested and comprehensive Golang statistics library package with no dependencies.
Stars: ✭ 2,196 (+12100%)
Mutual labels:  statistics, stats
Sportsipy
A free sports API written for python
Stars: ✭ 229 (+1172.22%)
Mutual labels:  statistics, stats

mathematica_logo


Stats Build Status Coverage Status Known Vulnerabilities NPM Downloads Node.js CI

A small library that does statistics for your numbers.

Installation

npm install math-stats

Usage

var stats = require('@pavanvamsi/math-stats');

var numbers = [1, 2, 3];

var moreNumbers = [1, 2, 1, 3];

var mean = stats.mean(numbers); // returns 2

var median = stats.median(numbers); // returns 2

var modes = stats.mode(moreNumbers); // returns [1]
var modeOfStrings = stats.mode(['red', 'blue', 'red']); // returns ['red']

var standardDeviation = stats.standardDeviation(numbers); // returns 0.816496580927726

var variance = stats.variance(numbers); // returns 0.6666666666666666

var harmonicMean = stats.harmonicMean(numbers); // returns 1.6363636363636365

var geometricMean = stats.geometricMean(numbers); // returns 1.8171205928321397

Like it? 🙈

the repo and share.

Link to npm package

License

MIT Copyright (c) pavanvamsi

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].