Two Paired Sample T-Test

From SOCR
Jump to: navigation, search
/*

July 2006. Annie Che <chea@stat.ucla.edu>. UCLA Statistics.


Source of example data: 
Mathematical Statistics and Data Analysis, John Rice, Second Edition. 
Page 412, example A, effect of cigarette smoking on platelet aggregation.

*/
package edu.ucla.stat.SOCR.analyses.example;

import java.util.HashMap;
import edu.ucla.stat.SOCR.analyses.data.Data;
import edu.ucla.stat.SOCR.analyses.result.TwoPairedTResult;


public class TwoPairedTExample {
	public static void main(String args[]) {
		double[] before = {25, 25, 27, 44, 30, 67, 53, 53, 52, 60, 28};
		double[] after = {27, 29, 37, 56, 46, 82, 57, 80, 61, 59, 43};

		// you'll need to instantiate a data instance first.
		Data data = new Data();

		// then use the following line to get the result.
		try {
			TwoPairedTResult result = 
                        (TwoPairedTResult) data.modelTwoPairedT(before, after);
			// modelTwoPairedT: order of first and second argumentd does NOT matter.


			if (result != null) {

				// Getting the model's parameter estiamtes and statistics.
				double meanX = result.getMeanX();
				double meanY = result.getMeanY();

				// sum of variance of x and variance of y.
				double sampleVar = result.getSampleVariance();

				int degreesFreedome = result.getDF();
				double tStat = result.getTStat();
				String pValue = result.getPValue();

				System.out.println("meanX = " + meanX);
				System.out.println("meanY = " + meanY);
				System.out.println("sampleVar = " + sampleVar);
				System.out.println("degreesFreedome = " + degreesFreedome);
				System.out.println("tStat = " + tStat);
				System.out.println("pValue = " + pValue);


			}
		} catch (Exception e) {
			System.out.println(e);
		}
	}
}




Translate this page:

(default)
Uk flag.gif

Deutsch
De flag.gif

Español
Es flag.gif

Français
Fr flag.gif

Italiano
It flag.gif

Português
Pt flag.gif

日本語
Jp flag.gif

България
Bg flag.gif

الامارات العربية المتحدة
Ae flag.gif

Suomi
Fi flag.gif

इस भाषा में
In flag.gif

Norge
No flag.png

한국어
Kr flag.gif

中文
Cn flag.gif

繁体中文
Cn flag.gif

Русский
Ru flag.gif

Nederlands
Nl flag.gif

Ελληνικά
Gr flag.gif

Hrvatska
Hr flag.gif

Česká republika
Cz flag.gif

Danmark
Dk flag.gif

Polska
Pl flag.png

România
Ro flag.png

Sverige
Se flag.gif