YAXArrays.jl
YAXArrays.jl copied to clipboard
skipmissing and mapslices
Hello!
Is there an alternative syntax to use skipmissing using mapslices. Right now, the only syntax I have found in the documentation is
mapslices(mean ∘ skipmissing, a, dims="Ti")
Each time I need to use skipmissing, I have to go in the documentation to copy-paste the ∘ operator, because I don't know the shortcut for this symbol 😄
\circ [tab]
😄
mapslices(x -> mean(skipmissing(x)), a, dims="Ti")
Thanks! 😄
(the \circ works well on the REPL, but not on VS Code).
edit - For VS Code, installing Fast Unicode Math Characters extension solved my problem.