hints on directory standards.
[CommonLispStat.git] / examples / 01-basicEDA.lisp
blobe02c3e7ed3c04c18dfff35b307d5834d66d961b1
1 ;;; -*- mode: lisp -*-
3 ;;; Time-stamp: <2010-02-09 16:15:54 tony>
4 ;;; Creation: <2009-04-19 09:41:09 tony>
5 ;;; File: basic-eda.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 :cls-examples)
19 ;; We assume that the "loading-data.lisp" code has been run, and one
20 ;; now wants to analyze the data loaded into *chickwts-df*
22 (load (localized-pathto "loading-data.lisp")
23 :verbose t)
25 *chickwts*
27 ;; Summarize is the basic EDA tool -- it accepts symbols or lists of
28 ;; symbols, to describe what, when, and how to do it. The resulting
29 ;; data structure has a means for re-invoking the result as well as
30 ;; partial storage of key results (when appropriate) as well as
31 ;; metadata about the results (time / context if provided).
33 (defparameter *my-df-smry-num*
34 (summarize *chickwts* :type 'numerical :io 'listing)
35 "First numerical summary of *my-df-smry*")
37 (defparameter *my-df-smry-num*
38 (summarize *my-df*
39 :type 'numerical
40 :io 'report-pdf
41 :device '(file "output.pdf"))
42 "First numerical summary of *my-df-smry*")
44 (defparameter *my-df-smry-vis*
45 (summarize *my-df*
46 :type 'visual
47 :io 'interactive
48 :device 'xwin)
49 "visual summary")
51 (defparameter *my-df-smry-vis*
52 (summarize *my-df* :type 'visual :io 'interactive-dynamic)
53 "visual summary")
55 (defparameter *my-df-smry-vis*
56 (summarize *my-df* :type 'visual :io 'static)
57 "visual summary")