set up to use quicklisp to load cairo2d, will need to do the same for cl-2d
[CommonLispStat.git] / src / describe / summarize.lisp
blob2a7a10b3fdc2e8dcba41bea06c6e867e3f0005dc
1 ;;; -*- mode: lisp -*-
3 ;;; Time-stamp: <2010-02-11 13:08:00 tony>
4 ;;; Creation: <2009-03-12 17:14:56 tony>
5 ;;; File: summarize.lisp
6 ;;; Author: AJ Rossini <blindglobe@gmail.com>
7 ;;; Copyright: (c)2009--, AJ Rossini. MIT.license (see top-level directory)
8 ;;; Purpose: Summarization strategy
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.
14 (in-package :cls-core-methods)
16 (defgeneric summarize (ds &key output style &allow-other-keys)
17 (:documentation "general approach to providing summarizes. Tie in different approachs to hat we want to do.")
18 (:method ((ds dataframe-like)
19 &key (output 'visual) (style 'fixed) (metadf nil))