Frames
Frames copied to clipboard
Data frames for tabular data.
Rasmus Bååth wrote an interesting blog: https://www.sumsar.net/blog/pandas-feels-clunky-when-coming-from-r/ where he remarks that Pandas feels clunky compared to R's frames. So I thought I would try to reproduce it using Frames and...
I have this which does compile but maybe it is not what you had in mind ``` {-# LANGUAGE DataKinds, QuasiQuotes, TypeOperators #-} module Melt where import Control.Applicative import Data.Foldable...
Hi all, I'm trying to get rid of the `"value" :-> CoRec ElField '[("field1", type1), ("field2", type2)]` column in favour of one column called "key" storing the labels and "value"...
This seems useful to me. We could add it to `StripFieldNames` but then the name doesn't indicate that you can also get the names as well as strip them. ```...
A first attempt at making pure versions of the `read*` functions in `Frames.CSV` which keeps the API nearly compatible. Whether this makes sense is up for discussion.
I was trying to figure out how Frames' type inference works. I have to move on to something else for now, but some of what I've done may be useful...
to mimic pandas mergeStatus column: specifies how the merge was done, leftempty, rightempty, present in both frames etc WIP: I would like some feedback on the API n case it...
This seems like a useful function to have.
I set out to write a demo of ingesting CSV, modifying the data, and outputting CSV based on a request I received. That demo is included here, but in doing...
Hi, When trying the tutorial, using a custom separator does not seem to work : With ml-100k/u.user containing ``` 1;24;M;technician;85711 2;53;F;other;94043 ``` The following code outputs nothing ```{-# LANGUAGE DataKinds,...