ferray-ma
Masked arrays with mask propagation for the ferray scientific computing library.
What's in this crate
MaskedArray<T, D>— array with boolean mask for missing/invalid data- Mask propagation: arithmetic and ufuncs automatically propagate masks
- Masked reductions:
masked_mean,masked_sum,masked_var,masked_std, etc. - Masked sorting: operations that respect the mask
Implements numpy.ma for Rust.
Usage
use MaskedArray;
use *;
let data = from_vec?;
let mask = vec!; // mask out index 2
let ma = new?;
This crate is re-exported through the main ferray crate with the ma feature (enabled by default).
License
MIT OR Apache-2.0