Graham Smith

Results 27 comments of Graham Smith
trafficstars

@zgornel Thank you! I can't believe I didn't notice I was doing the wrong kind of join. I do get the correct result with an outer join, with one caveat:...

If this ends up being addressed, it would be nice to be consistent with https://github.com/JuliaArrays/ArrayInterface.jl, e.g. implementing `axes`.

Ok! I'll keep an eye on master and try to test as it comes.

Resolved ``` WARNING: Method definition similar(Type{T

I provoked a better error message by adding `@show shape` above the offending line (evidently the argument `shape` itself is the problem... I sort of thought it would've been an...

I think the stack overflow *must* be an infinite recursion into `similar` even though the call stack doesn't say so -- `Base.to_shape` sends `IdentityUnitRange` to itself, so `abstractarray.jl:180` will recurse....

I'll take a look at it.

That does seem to be the correct workaround. We weren't able to get it to work, though for seemingly unrelated reasons (libgfortran wasn't linked properly and we gave up). I...

Seconded. The function `dim(arr::NamedAxisArray, name::Symbol)::Integer` was also useful.

I came across this again with a further case: For a `NamedAxisArray` I'd ideally like something like `enumerate(::NamedAxisArray) -> (::NamedTuple, ::T)`. I'll post the code for whatever solution I have...