/* Simple Least Squares Applet 20-July-1997 This is the fourth in a series of simple statistics applets. This software is in the public domain and can be used, modified and distributed without restriction. Department of Mathematics and Computer Science Kent State University Needs the following classes: editor.class data editor object Matrix.class linear algebra routines ExampleData.class generates random examples specialFucntions.class F-distribution and others History: 11.August, 1997: Added quadratic, cubic models also fixed plot canvas so that it can handle negative values 21.December, 1997: Fixed string output of p-value 24.December, 1997: Incorporated data editor object */ public class lsq extends java.applet.Applet { // note: this applet needs a window to run in lsqFrame m; public void init() { m = new lsqFrame("Simple Least-Squares"); } }