bluss

Results 913 comments of bluss

A general nice github feature: please use a line like "Fixes #972" to the PR description when making a change that closes an issue. Issues should be closed automatically on...

What's a universal max, min, sum? Just curious. On the topic of sum, the plan is that current Array method `.scalar_sum()` is renamed to `.sum()`. The plan is to also...

u64 is an integer type, so it doesn't really have the fidelity for a mean. What kind of result is expected? mean of [1, 3, 3, 8] would be 3...

`fold` or `map_axis`, I think, should do It (Edited)

We need to do a more general take on this but it's a good idea to have a note on .sum() and .mean() about this. 1. It's a debug assertion...

- possibly take inspiration from how polars does lazy eval - What's the relationship to multi-array operations, Zip etc? We don't need to create the world fully formed in one...

Needs further discussion so that the underlying abstractions are clarified - I'll be a bit unreachable during the summer, but back in a bit

Maybe someone wants to publish a crate that can wrap the whole read csv file into ndarray? I know I've implemented the same thing, but some of the corner cases...

@jturner314 I see, that makes sense. I guess my tricky one was guessing the type of each column. :) The data frame that was last christmas break and that was...

That's a good idea. This pattern seems familiar in Rust.., maybe it's the way we have to do it.