npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ttest

v4.0.0

Published

Perform the Student's t hypothesis test

Downloads

131,693

Readme

ttest

Perform the Student t hypothesis test

Installation

npm install ttest

Example

var ttest = require('ttest');

// One sample t-test
ttest([0,1,1,1], {mu: 1}).valid() // true

// Two sample t-test
ttest([0,1,1,1], [1,2,2,2], {mu: -1}).valid() // true

Documentation

var ttest = require('ttest');

The ttest module supports both one and two sample t-testing, and both equal and none equal variance.

If one array of data is given its a one sample t-test, and if two data arrays are given its a two sample t-test.

ttest() supports data in the following format:

  • an array of values, e.g. ttest([1, 2, 3])
  • a Summary object, e.g. ttest(new Summary([1, 2, 3]))
  • an object with the following properties: mean, variance, size, e.g. ttest({mean: 123, variance: 1, size: 42})

In all cases you can also pass an extra optional object, there takes the following properties:

const options = {
  // Default: 0
  // One sample case: this is the µ that the mean will be compared with.
  // Two sample case: this is the ∂ value that the mean diffrence will be compared with.
  mu: Number,

  // Default: false
  // If false don't assume variance is equal and use the Welch approximation.
  // This only applies if two samples are used.
  varEqual: Boolean,

  // Default: 0.05
  // The significance level of the test
  alpha: Number,

  // Default "not equal"
  // What should the alternative hypothesis be:
  // - One sample case: could the mean be less, greater or not equal to mu property.
  // - Two sample case: could the mean diffrence be less, greater or not equal to mu property.
  alternative: "less" || "greater" || "not equal"
};

The t-test object is finally created by calling the ttest constructor.

const stat = ttest(sample, options);
const stat = ttest(sampleA, sampleB, options);

When the ttest object is created you can get the following information.

stat.testValue()

Returns the t value also called the statistic value.

stat.pValue()

Returns the p-value.

stat.confidence()

Returns an array containing the confidence interval, where the confidence level is calculated as 1 - options.alpha. Where the lower limit has index 0 and the upper limit has index 1. If the alternative hypothesis is less or greater one of the sides will be +/- Infinity.

stat.valid()

Simply returns true if the p-value is greater or equal to the alpha value.

stat.freedom()

Returns the degrees of freedom used in the t-test.