Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 452 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 452 Bytes

Data Processing with Incanter

Basic data processing operations in clojure are presented using incanter.

  • row selection
  • column selection
  • create "views" of your dataset
  • apply functions to columns
  • apply functions to groups of rows
  • reshape your data (similar to reshape in R) with deshape and shape

Usage

drop into a repl

lein repl

bring in the namespace

(use 'incanter-demo.core)

and play around

(head (to-dataset user-info))