Open sebasv opened 4 years ago
I would also find this useful. I'm currently using something like:
data.map_axis(Axis(0), |col| col.min_skipnan().clone())
Given that the skipnan
functionality is not available in ndarray
itself I'd say that this would be a good addition for convenience :+1:
A common use case for me is taking the min or max over one axis of a multidimensional array, much like
quantile_axis_mut
, except I don't want to mutate my original data and I don't need the overhead of tracking quantiles. I couldn't find mentions of this idea in other issues. Will you consider a PR for such methods? I was thinking along the lines of