package StatPack; /* * Creates a "line" of Best Fit from an appropriate set of statistics and then compares to that set * * Not meant for large projects. Can be used in place of paid programs (e.g. Mathematica, SPSS) but * will not be as in depth or possibly even as accurate. * * Fits linearly, quadratically, logarithmically; exponentially * * asevans ???? * */ public class BestFit { public BestFit() { // TODO empty constructor } }