sl-solution

Results 46 comments of sl-solution

> Also the entire file https://github.com/sl-solution/InMemoryDatasets.jl/blob/9f781c309f90f1a4c1623f0e85c78209bf9d1b9a/src/missings/missings.jl is type piracy fixed.

`byrow` is fine tuned for a set of functions and operations (see its docstring for more details). For generic functions, `byrow` assumes the passed function accepts the row as a...

> But so, I can't explain to myself why `byrow (x-> sum(x)) ` seems to work instead. This is something that I should add to the documentation. "`byrow` with a...

> any update on this? unfortunately, no

It is `DatasetColumn`, a customised structure which wrap a column of a data set. It is there because we want to track any changes to a data set column. Any...

I changed `cumsum!`, and ran the package tests 400 times to make sure every thing is ok, however, keep it open for further investigation.

the `maximum` function returns `missing` when any of the values in a column is `missing`. Change `maximum` to `IMD.maximum` to automatically skip missings.

I see. Before we were overriding the Base functions, however, it has been fixed since `v.0.6.10`.

> Are there any contraindications to (or is this notoriously preferable rather than) treating strings (even empty ones) as scalars in the context of the flatten function? This is the...