All Projects → simple-statistics → Simple Statistics

simple-statistics / Simple Statistics

Licence: isc
simple statistics for node & browser javascript

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects
shell
77523 projects

Projects that are alternatives of or similar to Simple Statistics

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 (-25.01%)
Mutual labels:  statistics, math, regression
Mathnet Numerics
Math.NET Numerics
Stars: ✭ 2,688 (+0.34%)
Mutual labels:  statistics, math, regression
Interactive machine learning
IPython widgets, interactive plots, interactive machine learning
Stars: ✭ 140 (-94.77%)
Mutual labels:  statistics, regression
Machine Learning With Python
Practice and tutorial-style notebooks covering wide variety of machine learning techniques
Stars: ✭ 2,197 (-17.99%)
Mutual labels:  statistics, regression
Numerix
A collection of useful mathematical functions in Elixir with a slant towards statistics, linear algebra and machine learning
Stars: ✭ 159 (-94.06%)
Mutual labels:  statistics, math
Ethzcheatsheets
Stars: ✭ 92 (-96.57%)
Mutual labels:  statistics, math
Mlr
Machine Learning in R
Stars: ✭ 1,542 (-42.44%)
Mutual labels:  statistics, regression
Tidyversity
🎓 Tidy tools for academics
Stars: ✭ 155 (-94.21%)
Mutual labels:  statistics, regression
Ruby Statistics
Ruby gem for some statistical operations without any statistical language dependency
Stars: ✭ 67 (-97.5%)
Mutual labels:  statistics, math
Uci Ml Api
Simple API for UCI Machine Learning Dataset Repository (search, download, analyze)
Stars: ✭ 190 (-92.91%)
Mutual labels:  statistics, regression
Data Science Toolkit
Collection of stats, modeling, and data science tools in Python and R.
Stars: ✭ 169 (-93.69%)
Mutual labels:  statistics, regression
Peroxide
Rust numeric library with R, MATLAB & Python syntax
Stars: ✭ 191 (-92.87%)
Mutual labels:  statistics, regression
Openml R
R package to interface with OpenML
Stars: ✭ 81 (-96.98%)
Mutual labels:  statistics, regression
Fermat.js
Mathematics and statistics library for TypeScript.
Stars: ✭ 74 (-97.24%)
Mutual labels:  statistics, math
Appelpy
Applied Econometrics Library for Python
Stars: ✭ 136 (-94.92%)
Mutual labels:  statistics, regression
Metriculous
Measure and visualize machine learning model performance without the usual boilerplate.
Stars: ✭ 71 (-97.35%)
Mutual labels:  statistics, regression
Census Data Aggregator
Combine U.S. census data responsibly
Stars: ✭ 28 (-98.95%)
Mutual labels:  statistics, math
Mlj.jl
A Julia machine learning framework
Stars: ✭ 982 (-63.34%)
Mutual labels:  statistics, regression
Stats
A well tested and comprehensive Golang statistics library package with no dependencies.
Stars: ✭ 2,196 (-18.03%)
Mutual labels:  statistics, math
Morpheus Core
The foundational library of the Morpheus data science framework
Stars: ✭ 203 (-92.42%)
Mutual labels:  statistics, regression

Simple Statistics

A JavaScript implementation of descriptive, regression, and inference statistics.

Coverage Status npm version

Implemented in literate JavaScript with no dependencies, designed to work in all modern browsers (including IE) as well as in node.js.

Installation

  • I'm using Node.js, Webpack, Browserify, Rollup, or another module bundler, and install packages from npm.
    • First, install the simple-statistics module, using npm install simple-statistics, then include the code with require or import:
    • I use the require function to use modules in my project. (most likely)
      • When you use require, you have the freedom to assign the module to any variable name you want, but you need to specify the module's name exactly: in this case, 'simple-statistics'. The require method returns an object with all of the module's methods attached to it.
        var ss = require('simple-statistics')
    • I use import to use modules in my project. I'm probably using Babel, @std/esm, Webpack, or Rollup.
      • Import all functions under the ss object:
        import * as ss from 'simple-statistics'
        Include a specific named export:
        import {min} from 'simple-statistics'
        Simple statistics has only named exports for ES6.
  • I'm using Deno.
  • I'm not using a module bundler. I'm writing a web page, and want to include simple-statistics using a script tag.
    • I want to support all browsers
      • When you use simple-statistics from a script tag, you don't get to choose the variable name it is assigned to: simple-statistics will always become available globally as the variable ss. You can reassign this variable to another name if you want to, but doing so is optional.
        <script src='https://unpkg.com/[email protected]/dist/simple-statistics.min.js'>
        </script>
    • I want to use ES6 modules in a browser and I'm willing to only support new browsers to do it
      • This module works great with the ?module query parameter of unpkg. If you specify type='module' in your script tag, you'll be able to import simple-statistics directly - through index.js and with true ES6 import syntax and behavior.
        <script type='module'>
        import {min} from "https://unpkg.com/[email protected]/index.js?module"
        console.log(min([1, 2, 3]))
        </script>
        This feature is still experimental in unpkg and very bleeding-edge.
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].