@snailcode.net/basic-stat

1.0.5 • Public • Published

@snailcode-net/basic-stat

An npm package for performing basic statistical analysis.

Descriptive Statistics


  1. Import the Summary class.

    import { Descriptive } from "@snailcode.net/basic-stat";

  2. Create a new Summary.

    const grades = [1, 2, 4, 6, 9];

    const stat = new Descriptive("grades", grades, "sample");

  3. To access all the descriptive statistics of the dataset, you can access the 'summary' property of the summary.

    stat.summary

    The value property contains the mean, median, mode, max, min, variance, and standard deviation of the dataset.

  4. You can access the different descriptive statistics individually using the following:

    • mean: stat.summary.mean
    • median: stat.summary.median
    • mode: stat.summary.mode
    • max: stat.summary.max
    • min: stat.summary.min
    • variance: stat.summary.variance
    • standard deviation: stat.summary.standardDeviation

Inferential Statistics


in-progress

/@snailcode.net/basic-stat/

    Package Sidebar

    Install

    npm i @snailcode.net/basic-stat

    Weekly Downloads

    1

    Version

    1.0.5

    License

    GPL-3.0-or-later

    Unpacked Size

    188 kB

    Total Files

    37

    Last publish

    Collaborators

    • snailcode.net