From fab560883e2e23c88691efa676658bb23e3e02d7 Mon Sep 17 00:00:00 2001 From: AJ Rossini Date: Tue, 28 Apr 2009 23:17:40 +0200 Subject: [PATCH] no need for datatable --- src/data/datatable.lisp | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 src/data/datatable.lisp diff --git a/src/data/datatable.lisp b/src/data/datatable.lisp deleted file mode 100644 index 231eec8..0000000 --- a/src/data/datatable.lisp +++ /dev/null @@ -1,33 +0,0 @@ -;;; -*- mode: lisp -*- -;;; -;;; Copyright (c) 2007, by A.J. Rossini -;;; See COPYRIGHT file for any additional restrictions (BSD license). - -;;;; datatable -- i.e. data.frame for CL. Extends CLEM - -;;; What is this talk of 'release'? Klingons do not make software -;;; 'releases'. Our software 'escapes', leaving a bloody trail of -;;; designers and quality assurance people in its wake. - - -;;;; -;;;; Package Setup -;;;; - -(defpackage :lisp-stat-data-frame - (:use :common-lisp - :clem) - (:export data-frame-p rows cols - row-list column-list - transpose - bind-columns bind-rows - array-data-vector vector-to-array)) - -(in-package :lisp-stat-data-frame) - - -;;; The goal with this data structure is to be able to extract CLEM -;;; types for statistical computations from a more general data type. -;;; The primary difference is that we need a means for ensuring column -;;; "sameness" and this is absolutely critical. - -- 2.11.4.GIT