A two-dimensional array-like structure in which each column contains values of one variable and each row contains one set of values from each column
Explore the docs »
Report Bug
·
Request Feature
·
Reference Manual
A data frame is a two dimensional data structure structure whose columns may be of differing types. It is similar to, and may be manipulated as, a Common Lisp array. Data frames hold tightly coupled collections of variables that all belong to one experiment.
To get a local copy up and running follow these steps:
An ANSI Common Lisp implementation. Developed and tested with SBCL and CCL.
- Clone the repository
cd ~/quicklisp/local-projects && git clone https://github.com/Lisp-Stat/data-frame.git
- Reset the ASDF source-registry to find the new system (from the REPL)
(asdf:clear-source-registry)
- Load the system
(ql:quickload :data-frame)
Create a data frame:
(make-df '(:a :b) '(#(1 2 3) #(10 20 30)))
For more examples, please refer to the Documentation.
See the open issues for a list of proposed features (and known issues).
This system is part of the Lisp-Stat project; that should be your first stop for information. Also see the community page for more information.
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated. Please see CONTRIBUTING.md for details on the code of conduct, and the process for submitting pull requests.
Distributed under the MS-PL License. See LICENSE for more information.
Project Link: https://github.com/lisp-stat/data-frame