Results 48 comments of idontgetoutmuch

I need this so I think I will use @guaraqe's PR until something better comes along.

And now I have ``` data Pair f = Pair { pairYear :: Column f Double , pairMonth :: Column f Double , pairDayofMonth :: Column f Double } deriving...

This seems related: https://github.com/acowley/Frames/issues/170#issuecomment-1523492615. I just rename columns and then do the inner join.

Thanks for your very comprehensive reply. To be fair we are probably using the wrong data structure (CSV) for our data as I may want to use 10x or even...

``` row2 :: Rec (Either Text :. ElField) '[LATITUDE, LONGITUDE] row2 = readRec ["-21,5245377777","-39,6610013888"] row2 {Right LATITUDE :-> -2.15245377777e11, Right LONGITUDE :-> -3.96610013888e11} ``` but ``` Prelude> read "3,1459" ::...

``` instance Parseable Double where -- Some CSV's export Doubles in a format like '1,000.00', filtering -- out commas lets us parse those sucessfully parse = fmap Definitely . fromText...

With ``` parse = fmap Definitely . fromText ``` I get ``` main {LATITUDE :-> "-21,5245377777", LONGITUDE :-> "-39,6610013888"} {LATITUDE :-> "-9,5933511111", LONGITUDE :-> "-35,8891097222"} ``` @acowley I am not...

Actually now that I think about it, `Frames` should not interpret "1,000.00". If the number is not in the basic format "1000.00" then the user will get text and can...