From a2fd4dd218c035c75490f67936e1107961436b6f Mon Sep 17 00:00:00 2001 From: AJ Rossini Date: Wed, 10 Feb 2010 21:58:02 +0100 Subject: [PATCH] whitespace and docs Signed-off-by: AJ Rossini --- examples/00-loadingData.lisp | 4 +--- examples/01-basicEDA.lisp | 17 +++++++++++++---- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/examples/00-loadingData.lisp b/examples/00-loadingData.lisp index 758a9cc..809701e 100644 --- a/examples/00-loadingData.lisp +++ b/examples/00-loadingData.lisp @@ -1,6 +1,6 @@ ;;; -*- mode: lisp -*- -;;; Time-stamp: <2010-02-10 09:01:38 tony> +;;; Time-stamp: <2010-02-10 14:07:45 tony> ;;; Creation: <2009-03-12 17:14:56 tony> ;;; File: template.lisp ;;; Author: AJ Rossini @@ -12,7 +12,6 @@ ;;; 'releases'. Our software 'escapes', leaving a bloody trail of ;;; designers and quality assurance people in its wake. - (in-package :cl-user) (cl:defpackage :cls-examples ;; similar setup to cls-user, without test data @@ -47,7 +46,6 @@ return a pathspec, not a string/namespec" (concatenate 'string *cls-home-dir* x)) - (progn ;; LISP-STAT COMPATIBILITY MODE: ;; diff --git a/examples/01-basicEDA.lisp b/examples/01-basicEDA.lisp index e02c3e7..9ed3e7c 100644 --- a/examples/01-basicEDA.lisp +++ b/examples/01-basicEDA.lisp @@ -1,6 +1,6 @@ ;;; -*- mode: lisp -*- -;;; Time-stamp: <2010-02-09 16:15:54 tony> +;;; Time-stamp: <2010-02-10 14:23:42 tony> ;;; Creation: <2009-04-19 09:41:09 tony> ;;; File: basic-eda.lisp ;;; Author: AJ Rossini @@ -12,10 +12,8 @@ ;;; 'releases'. Our software 'escapes', leaving a bloody trail of ;;; designers and quality assurance people in its wake. - (in-package :cls-examples) - ;; We assume that the "loading-data.lisp" code has been run, and one ;; now wants to analyze the data loaded into *chickwts-df* @@ -30,6 +28,18 @@ ;; partial storage of key results (when appropriate) as well as ;; metadata about the results (time / context if provided). +;; numerical: (txt / *ml / , variable / stream / spec'd to file) +;; visual: (static/dynamic, fixed/interactive) (need better term than fixed) + +;; context -- using dataset metadata, to drive the resulting summary. +;; dataset metadata: +;; #1 sampling scheme - +;; retro / prospect collection +;; random, biased, convenience sampling; +;; #2 purpose of dataset integration/manipulation +;; #3 sampling/temporal component of variables +;; + (defparameter *my-df-smry-num* (summarize *chickwts* :type 'numerical :io 'listing) "First numerical summary of *my-df-smry*") @@ -55,4 +65,3 @@ (defparameter *my-df-smry-vis* (summarize *my-df* :type 'visual :io 'static) "visual summary") - -- 2.11.4.GIT