MCPcopy Create free account
hub / github.com/EdwardRaff/JSAT / TTest

Method TTest

JSAT/src/jsat/testing/onesample/TTest.java:24–32  ·  view source on GitHub ↗
(H1 h1, double hypothMean, double sampleMean, double sampleDev, double sampleSize)

Source from the content-addressed store, hash-verified

22 private double sampleSize;
23
24 public TTest(H1 h1, double hypothMean, double sampleMean, double sampleDev, double sampleSize)
25 {
26 this.h1 = h1;
27 this.hypothMean = hypothMean;
28 this.sampleMean = sampleMean;
29 this.sampleDev = sampleDev;
30 this.sampleSize = sampleSize;
31 tDist = new StudentT(sampleSize-1);
32 }
33
34 public TTest(double hypothMean, double sampleMean, double sampleDev, double sampleSize)
35 {

Callers

nothing calls this directly

Calls 3

meanMethod · 0.45
standardDeviationMethod · 0.45
lengthMethod · 0.45

Tested by

no test coverage detected