Ian Weaver
Ian Weaver
So I fell down a rabbit hole of [package tooling lore](https://github.com/cjdoris/PythonCall.jl/discussions/96#discussioncomment-1976573). I guess the dream of having truly separate project and test envs just isn't there quite yet. Until [#1233](https://github.com/JuliaLang/Pkg.jl/issues/1233)...
Idk if this is related, but I think I was able to reproduce the error when I forgot to specify the type parameter for an array (any kind really) before...
I just asked about this on Zulip and was directed to a very nice implementation [here](https://juliaearth.github.io/GeoStats.jl/stable/plotting.html#cornerplot)! Recipes here: https://github.com/JuliaEarth/GeoStatsBase.jl/blob/a1a67e498477f80890556443232c3e08a415e083/src/plotrecipes/cornerplot.jl https://github.com/JuliaEarth/GeoStatsBase.jl/blob/a1a67e498477f80890556443232c3e08a415e083/src/plotrecipes/distplot1D.jl https://github.com/JuliaEarth/GeoStatsBase.jl/blob/a1a67e498477f80890556443232c3e08a415e083/src/plotrecipes/distplot2D.jl
Hey folks, thanks again for these awesome packages! Have there been any more conversations about potentially joining forces? Totally understand though if things have diverged since then, was just hopping...
Yea, have some DQ support [in the works here](https://github.com/SymbolicML/DynamicQuantities.jl/pull/165), but still early days. The `scatter([1u"m"], [2])` example should work in that PR. Feedback welcome =]
Just saw this really nice approach for axis label units in AoG https://github.com/MakieOrg/AlgebraOfGraphics.jl/pull/619 https://aog.makie.org/v0.9.6/examples/scales/units#units > Wonder what's the reason for making units a part of ticklabels: are there some fields...
That would be dope! Is your thinking that this would not require figure level recipe support? I see [Julius' suggestion of using SpecAPI](https://github.com/MakieOrg/Makie.jl/issues/4692#issuecomment-2563437387) to potentially get around this, but wasn't...
Dang this is slick ```julia # DynamicQuantities.jl example x = (6:10)us"cm/mm" y = (7:11)us"g" fig = Figure() scatter(fig[1, 1], y) plot(fig[1, 2], x, y) fig ```  Details ```julia using...
TIL about [`Makie.plotsym`](https://github.com/SciML/SciMLBase.jl/blob/f6c01b284b9fd0970155e10a187579c61cc4b7b4/ext/SciMLBaseMakieExt.jl#L113). This makes specifying plot types really convenient ```julia x = [6, 7, 8]u"m" y = [8, 9, 10]us"W/Hz" fig, _, pl = plot(x, y) lines(fig[1, 2], x,...
Yep, I just hit that edge recently too. Still learning a bunch, thanks for the `to_plotspec` tip, Alexander!