renamed t-test example file, where it fits in the hierarchy. It's still BROKEN.
[CommonLispStat.git] / examples / 50-TTestExample.lisp
blob7a9544f1b4a824926217436a3a6e15d3ad040fac
1 ;;; -*- mode: lisp -*-
3 ;;; Time-stamp: <2012-10-12 08:55:28 tony>
4 ;;; Creation: <2009-04-19 09:41:09 tony>
5 ;;; File: t-test-example.lisp
6 ;;; Author: AJ Rossini <blindglobe@gmail.com>
7 ;;; Copyright: (c)2009--, AJ Rossini. MIT
8 ;;; Purpose: Example of basic exploratory data analysis in CLS.
10 ;;; What is this talk of 'release'? Klingons do not make software
11 ;;; 'releases'. Our software 'escapes', leaving a bloody trail of
12 ;;; designers and quality assurance people in its wake.
15 ;;; If we can't do a t-test, we can't do anything
17 ;;;; BROKEN!!!
19 (in-package :cls-user)
21 (defparameter *my-df*
22 (make-dataframe
23 (rsm.string::filestream->string-table
24 "/path/to/file.dsv"))
25 "Initial read-in of data.")