pmatos / racket-news

Repository for the Racket News Website
https://racket-news.com
11 stars 2 forks source link

ANN: Tabular Asa #66

Closed massung closed 3 years ago

massung commented 3 years ago

I just released Tabular Asa - an efficient, column-oriented, immutable dataframes implementation for Racket. Feature set includes:

The code is also written to be threaded and combine nicely with the plot module. For example:

(plot (discrete-histogram (~> (call-with-input-file "books.csv" table-read/csv)
                              (table-groupby '(Genre))
                              (group-count)
                              (table-cut '(Genre Title))
                              (table-rows))))
pmatos commented 3 years ago

Thanks.