documentation and preparation for statistical-oriented access and views.
[CommonLispStat.git] / src / data / dataframe-xarray.lisp
blob10340595aa34953a12940fc50999a3b12950163d
1 ;;; -*- mode: lisp -*-
3 ;;; Time-stamp: <2009-07-12 08:05:27 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
31 types. Vectors can have single types, but arrays have single type.
32 Dataframe-like have multiple types, variable-like single type,
33 case-like has multiple types, and matrix-like has single type.")
35 (defmethod xdims ((obj dataframe-like))
36 (dataframe-dimensions obj))
38 ;; use default methods at this point, except for potentially weird DFs
39 (defmethod xdims* ())
41 (defmethod xdim ((obj dataframe-like) index)
42 (dataframe-dimension index))
46 (defmethod xrank ())
48 (defmethod slice ())
50 (defmethod take ())
52 (defmethod carray ())