From 3c24c39bb0e1f9159adb3d614c5a4a5054c38dfb Mon Sep 17 00:00:00 2001 From: AJ Rossini Date: Thu, 17 Dec 2009 17:33:13 +0100 Subject: [PATCH] since we factored out and rationalized the listoflist transformation functions into their own package, we need to fix the examples to get them to work, now. Signed-off-by: AJ Rossini --- examples/loading-data.lisp | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/examples/loading-data.lisp b/examples/loading-data.lisp index acc3290..da70a1f 100644 --- a/examples/loading-data.lisp +++ b/examples/loading-data.lisp @@ -1,6 +1,6 @@ ;;; -*- mode: lisp -*- -;;; Time-stamp: <2009-12-08 07:54:05 tony> +;;; Time-stamp: <2009-12-17 17:31:29 tony> ;;; Creation: <2009-03-12 17:14:56 tony> ;;; File: template.lisp ;;; Author: AJ Rossini @@ -58,20 +58,18 @@ return a pathspec, not a string/namespec" (defparameter *my-df-2* (make-instance 'dataframe-array :storage - (listoflist->array - (transpose-listoflist + (listoflist:listoflist->array (rsm.string:file->string-table - (localized-pathto "Data/example-mixed.csv")))) + (localized-pathto "Data/example-mixed.csv"))) :doc "This is an interesting dataframe-array")) *my-df-2* (defparameter *my-df-3* (make-instance 'dataframe-array :storage - (listoflist->array - (transpose-listoflist + (listoflist:listoflist->array (rsm.string:file->number-table - (localized-pathto "Data/example-numeric.csv")))) + (localized-pathto "Data/example-numeric.csv"))) :doc "This is an interesting dataframe-array")) *my-df-3* -- 2.11.4.GIT