fixed DEF to work correctly, finally, with docs from where I coded it.
[CommonLispStat.git] / examples / t-test-example.lisp
blob311daf2020028f8c4f15d0c70bb18f607403a39a
1 ;;; -*- mode: lisp -*-
3 ;;; Time-stamp: <2009-04-19 09:53:53 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. BSD, MIT, LLGPL, or
8 ;;; GPLv2+, or GPLv3+ depending on how it arrives.
9 ;;; Purpose: Example of basic exploratory data analysis in CLS.
11 ;;; What is this talk of 'release'? Klingons do not make software
12 ;;; 'releases'. Our software 'escapes', leaving a bloody trail of
13 ;;; designers and quality assurance people in its wake.
16 (in-package :ls-user)
18 (defparameter *my-df*
19 (make-dataframe
20 (rsm.string::filestream->string-table
21 "/path/to/file.dsv"))
22 "Initial read-in of data.")
25 ;; now to build a linear regression model from *my-df*