/* Student's t-Test Applet 11.June, 1997 Author: Bryan Lewis Department of Mathematics and Computer Science Kent State University url: http://www.mcs.kent.edu/~blewis email: blewis@mcs.kent.edu The first in a set of simple statistics applets, tTest computes a one tailed Student's t test for data supplied in a text component. The data can be delimited with commas, tabs, spaces or newlines. This is my firs Java applet! This software is in the public domain and can be used, modified and distributed without restriction. Requires: tFrame.m most of the code is here History: 11.June, 1997: First version 15.August, 1997: Modified to take advantage of the Matrix.class 12.December, 1997: Split up class source codes into separate files 24.December, 1997: implemented data editor object */ // Here is the applet container... public class tTest extends java.applet.Applet { tFrame m; public void init() { m = new tFrame("Student's t-Test"); } }