Alexander Plavin
Alexander Plavin
I find that unicode completion often doesn't work in Pluto – simply refuses to complete a symbol. Some symbols never get completed, some get completed in some contexts but not...
# Description The whole pipeline almost-supported them already, here I just make a few minor fixes where the assumption of increasing values was baked in. ## Type of change -...
# Description The `alpha` argument was just silently ignored before this PR. This makes it actually work. ## Type of change Delete options that do not apply: - [x] Bug...
Trying to make a proper recipe for stuff like `lines(function)` that plot the function over the whole axis x-range. Current hacky implementation at https://github.com/JuliaAPlavin/MakieExtra.jl/blob/master/src/axisfunction.jl. However, following the docs and defining...
@lift: allow single observable, or no observables at all lift: allow operating on non-observables Motivation: this enables preparing plotting arguments without manually handling observable and non-observable cases, like ```julia #...
I wonder what the Makie devs think about embracing julia package extensions for various deps? Aside from reducing compilation/loading times, these may in practice help cleaning up the overall design....
I encountered this strange inconsistency: ```julia # works: julia> scatter([1u"m"], [2]) # works: julia> scatter([(1, 2)]) # doesn't work: julia> scatter([(1u"m", 2)]) ERROR: ArgumentError: Conversion failed for Scatter (With conversion...
Image conversion doesn't seem to work for units: ```julia julia> image((0, 1), (1, 2), rand(5, 10)) # works julia> image((0u"m", 1u"m"), (1u"W", 2u"W"), rand(5, 10)) ERROR: ArgumentError: Conversion failed for...
Throws stack overflow: ```julia julia> contour((1:10)u"km", (1:100)u"W", rand(10, 100)) ERROR: StackOverflowError: Stacktrace: [1] splitprec(::Type{Float64}, i::Int128) @ Base ./twiceprecision.jl:22 [2] TwicePrecision @ ./twiceprecision.jl:211 [inlined] [3] TwicePrecision @ ./twiceprecision.jl:224 [inlined] [4] steprangelen_hp(::Type{Float64},...
### Feature description I didn't find an option to put units into axis labels instead of tick labels. Is it available anywhere? Maybe that should also be the default? I...