From 0b8fe9bd4ff8dd88bb674d9171871fc7bcb23518 Mon Sep 17 00:00:00 2001 From: AJ Rossini Date: Mon, 21 Sep 2009 19:55:02 +0200 Subject: [PATCH] make sure we put the dataframes into the dataframe pacakage. Whoops. Signed-off-by: AJ Rossini --- src/data/dataframe-array.lisp | 3 ++- src/data/dataframe-listoflist.lisp | 4 +++- src/data/dataframe-matrixlike.lisp | 6 +++++- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/src/data/dataframe-array.lisp b/src/data/dataframe-array.lisp index a7f5375..17e77eb 100644 --- a/src/data/dataframe-array.lisp +++ b/src/data/dataframe-array.lisp @@ -1,6 +1,6 @@ ;;; -*- mode: lisp -*- -;;; Time-stamp: <2009-09-19 23:13:00 tony> +;;; Time-stamp: <2009-09-21 17:02:51 tony> ;;; Creation: <2009-03-12 17:14:56 tony> ;;; File: dataframe-array.lisp ;;; Author: AJ Rossini @@ -15,6 +15,7 @@ ;;; This organization and structure is new to the 21st Century ;;; version.. Think, "21st Century Schizoid Man". +(in-package :cls-dataframe) ;;;;; DATAFRAME-ARRAY diff --git a/src/data/dataframe-listoflist.lisp b/src/data/dataframe-listoflist.lisp index 47e6b9e..5ca6b40 100644 --- a/src/data/dataframe-listoflist.lisp +++ b/src/data/dataframe-listoflist.lisp @@ -1,6 +1,6 @@ ;;; -*- mode: lisp -*- -;;; Time-stamp: <2009-09-19 23:17:25 tony> +;;; Time-stamp: <2009-09-21 17:03:03 tony> ;;; Creation: <2009-03-12 17:14:56 tony> ;;; File: dataframe-listoflist.lisp ;;; Author: AJ Rossini @@ -16,6 +16,8 @@ ;;; This organization and structure is new to the 21st Century ;;; version.. Think, "21st Century Schizoid Man". +(in-package :cls-dataframe) + ;;; DATAFRAME-LISTOFLIST ;;; ;;; example/implementatin of using lisp-matrix datastructures for diff --git a/src/data/dataframe-matrixlike.lisp b/src/data/dataframe-matrixlike.lisp index 2ce5786..b49014e 100644 --- a/src/data/dataframe-matrixlike.lisp +++ b/src/data/dataframe-matrixlike.lisp @@ -1,6 +1,6 @@ ;;; -*- mode: lisp -*- -;;; Time-stamp: <2009-09-19 23:21:30 tony> +;;; Time-stamp: <2009-09-21 17:03:20 tony> ;;; Creation: <2009-03-12 17:14:56 tony> ;;; File: dataframe-matrixlike.lisp ;;; Author: AJ Rossini @@ -16,11 +16,15 @@ ;;; This organization and structure is new to the 21st Century ;;; version.. Think, "21st Century Schizoid Man". + +(in-package :cls-dataframe) + ;;; DATAFRAME-MATRIXLIKE ;;; ;;; example/implementatin of using lisp-matrix datastructures for ;;; dataframe storage. + (defclass dataframe-matrixlike (dataframe-like) ((store :initform nil :initarg :storage -- 2.11.4.GIT