more dataframe-xarray work, not finished.
[CommonLispStat.git] / src / data / dataframe-xarray.lisp
blob0696ddfff58a652ed4e4668abfed3b1daa130938
1 ;;; -*- mode: lisp -*-
3 ;;; Time-stamp: <2009-07-05 02:08:15 tony>
4 ;;; Creation: <2009-06-22 17:09:47 tony>
5 ;;; File: dataframe-xarray.lisp
6 ;;; Author: AJ Rossini <blindglobe@gmail.com>
7 ;;; Copyright: (c)2009--, AJ Rossini. BSD, LLGPL, or GPLv2, depending
8 ;;; on how it arrives.
9 ;;; Purpose: Integration of xarray tools with dataframe-like
10 ;;; objects.
12 ;;; What is this talk of 'release'? Klingons do not make software
13 ;;; 'releases'. Our software 'escapes', leaving a bloody trail of
14 ;;; designers and quality assurance people in its wake.
16 ;;; Tamas Papp's xarray package is his 2nd generation generic array
17 ;;; indexing package, coming after the ideas and thoughts behind his
18 ;;; affi package, which while novel, is somewhat obsolete.
21 (defmethod xref ((obj data-frame-like) &rest indices)
22 (apply #'dfref obj indices))
24 (defmethod (setf xref) (value (object array) &rest subscripts)
25 (setf (apply #'dfref object subscripts) value))
27 (defmethod xref ((obj matrix-like) &rest indices))
29 (defmethod xtype ((obj dataframe-like))
30 "Unlike the standard xtype, here we need to return a vector of the types.")
32 (defmethod xdims ((obj dataframe-like))
33 (dataframe-dimensions obj))
35 ;; use default methods at this point, except for potentially weird DFs
36 (defmethod xdims* ())
38 (defmethod xdim ((obj dataframe-like) index)
39 (dataframe-dimension index))
43 (defmethod xrank ())
45 (defmethod slice ())
47 (defmethod take ())
49 (defmethod carray ())