Aaron Kaw
Aaron Kaw
Some situations would benefit from having the "Run cell" play button still accessible and visible even when the code is hidden, is my opinion. E.g. Demonstrating different randomness effects in...
And fixed `TypeError` usage. Should hopefully be enough to close #1085.
# TL; DR I'm looking to simplify code for managing nested `DimArray`s and `DimStack`s. E.g. feeding nested data to `AlgebraOfGraphics`. Maybe an `add_dims` function? I've prototyped one that I'm happy...
Option to display lat/lon/other angles in degrees, minutes, and seconds?
I have a complicated nested data structure in JSON format, containing many vectors and vectors of vectors of numbers. When storing the parsed data to a dictionary via `parse_json`, is...
The VS Code editorial experience for `*.md` files is much better than for `*.jmd` files, so I prefer to create my files with the `*.md` extension. When I `weave("*.md")`, it...
Is the fix simple? ```julia-repl julia> @dB 100u"V" / 10u"V" # works and displays 20.0 dB (10 V) julia> @dB 100u"μPa^2" / 10u"μPa^2"; # works julia> @dB 100u"μPa^2" / 10u"μPa^2"...
First pass at interpolation wrappers. Critiques please 😊
Once interpolation is implemented (#420), can we make `DimArray` instances act as functors? As an example and demonstration of available syntax: ```julia-repl julia> A = rand(X(1:3), Y(1:4), Z(1:5)) ┌ 3×4×5...
Would help if I could construct a `DimArray` with syntax that lets me see which input values are associated with which output values, without running the code. FWIW, I've been...