YAXArrays.jl
YAXArrays.jl copied to clipboard
Yet Another XArray-like Julia package
provide one or two examples on how to use those inputs.
How can I apply a function to in-memory inputs and return in-memory outputs? Currently it seems I have to work a lot to make sure I get in-memory outputs... MWE:...
```julia using Statistics @time redmean = xmap(mean, redcube ⊘ Ti, output=XOutput(outtype=Union{Missing,Float32})) 19.027704 seconds (6.21 M allocations: 329.657 MiB, 0.46% gc time, 50.91% compilation time) ┌ 4004×4004×168 YAXArray{Union{Missing, UInt8}, 3} ┐...
I am currently converting the mapCube tests to use xmap and I found that xmap doesn't have the same keyword arguments as mapCube. I am not sure whether we would...
I want to do a moving window on longitude and latitude but have an additional axis that would take the full axis along. This is needed for either time series...
I would have expected that the datatype of the result of a mapslices(mean, cube, dims=time) would be a floating point value and not a UInt. This fails on compute with...
Broadcasting Float32 fails ```julia using Statistics @time redmean = Float32.(redcube) MethodError: no method matching XFunction(::Type{Float32}; inplace::Bool) The type `XFunction` exists, but no method is defined for this combination of argument...
While exploring #536 I was wondering whether DimWindowArray should be an AbstractDimArray.
When I am using a YAXArray inside SignalDecomposition.decompose I get back a YAXArray backed by a DAE.GMWOPResult. And I can then read the data via readcubedata but if I try...
On the way to removing our own types I am wondering whether we could remove the YAXArrays.Dataset type and replace it with a DimStack of YAXArrays? This would move us...