You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Have there already been any conversations about incorporating DynamicQuantities.jl support?
We started a proof of concept over in SymbolicML/DynamicQuantities.jl#165 to begin exploring this, but wanted to check in here to see if we are following best practices. In particular, if there are any API stability considerations that we should take?
Thanks again for establishing such a slick unit conversion system here!
For plot types, please add an image of how it should look like
Quick demo from the draft DynamicQuantities.jl PR
using DynamicQuantities, GLMakie
fig =Figure()
y =60:10:100scatter(fig[1, 1], y *u"m")
scatter(fig[1, 2], QuantityArray(y, u"m"))
scatter(fig[2, 1], y *u"kg", y *u"m")
scatter(fig[2, 2], y *us"m/s/Hz")
fig
The text was updated successfully, but these errors were encountered:
Feature description
Howdy again, got another units question for folks
Have there already been any conversations about incorporating DynamicQuantities.jl support?
We started a proof of concept over in SymbolicML/DynamicQuantities.jl#165 to begin exploring this, but wanted to check in here to see if we are following best practices. In particular, if there are any API stability considerations that we should take?
Related discussion: SymbolicML/DynamicQuantities.jl#164
Thanks again for establishing such a slick unit conversion system here!
For plot types, please add an image of how it should look like
Quick demo from the draft DynamicQuantities.jl PR
The text was updated successfully, but these errors were encountered: