From 6a13a5af37531d32fd2a1959ebde0c476279f625 Mon Sep 17 00:00:00 2001 From: AJ Rossini Date: Sun, 3 Jan 2010 16:38:25 +0100 Subject: [PATCH] incorporation of new CLS-DATA* packages, not finished yet. Signed-off-by: AJ Rossini --- src/packages.lisp | 30 ++++++++++++++++++++++++------ 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/src/packages.lisp b/src/packages.lisp index 2fa591b..b6c7823 100644 --- a/src/packages.lisp +++ b/src/packages.lisp @@ -1,12 +1,12 @@ ;;; -*- mode: lisp -*- -;;; Time-stamp: <2009-12-23 14:41:54 tony> +;;; Time-stamp: <2010-01-03 16:21:25 tony> ;;; Creation: <2008-03-11 19:18:34 user> ;;; File: packages.lisp ;;; Author: AJ Rossini -;;; Copyright: (c)2007--2008, AJ Rossini. BSD, LLGPL, or GPLv2, depending -;;; on how it arrives. -;;; Purpose: package structure description for lispstat +;;; Copyright: (c)2007--2010, AJ Rossini. MIT License. See +;;; LICENSE.mit in top level directory for details. +;;; Purpose: packages for Common Lisp Statistics ;;; What is this talk of 'release'? Klingons do not make software ;;; 'releases'. Our software 'escapes', leaving a bloody trail of @@ -397,9 +397,13 @@ objects/packages required.") (:nicknames :cls :common-lisp-statistics :lisp-stat) (:use :common-lisp + + ;; extern packages :xarray ;; generic reference -- internally supporting array, lol structs :listoflist :lisp-matrix ;; conversion to a more robust linalg approach + + ;; intern packages :lisp-stat-config :lisp-stat-object-system :lisp-stat-compound-data @@ -408,14 +412,18 @@ :lisp-stat-float :lisp-stat-basics :lisp-stat-data - :cls-dataframe + :cls-data + :cls-dataframe + :cls-dataio + :cls-datatrans + :lisp-stat-math :lisp-stat-descriptive-statistics :lisp-stat-regression-linear :cls-visualize - ;; :cybertiggyr-dsv ;; :cls-visualize-plplot + ;; :cls-visualize-cl2d ) (:shadowing-import-from :xarray slice) (:shadowing-import-from :lisp-stat-object-system @@ -536,6 +544,16 @@ listoflist->dataframe listoflist->array listoflist->matrix-like sublists-of-same-size-p + ;; cls-dataio + dsvstream->dataframe dsvstream->matrix dsvstream->listoflist + filename.dsv->dataframe + + ;; cls-datatrans + listoflist->dataframe dataframe->listoflist + listoflist->array array->listoflist + listoflist->matrix-like matrix-like->listoflist + + ;; statistics.lsp (descriptions, should probably be moved ;; later...? standard-deviation quantile median interquartile-range -- 2.11.4.GIT