data-frame
data-frame copied to clipboard
A data frame implementation for Racket
The recent commit 638313fe020ab5cfda5b464f86fdf570543bf74f, which removed various deprecated functions, broke the sawzall package and things that depend on it (see http://web.archive.org/web/20230411153024/https://pkg-build.racket-lang.org/server/built/fail/graphite.txt). I can get that package fixed, but it might...
### What program did you run? ``` #lang racket (require data-frame) (define df (let* ((df (make-data-frame)) (xs (make-series "x" #:data '#(0 1))) (ys (make-series "y" #:data '#(2 3)))) (df-add-series! df...