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
It would be nice if the @linq macro natively supported using a begin block. The related example in the docs requires using the @> macro from Lazy.jl, and thus requires introducing Lazy.jl as a dependency of one's package.
What I have in mind is syntax like the following:
@linq df begin@transform(y =10*:x)
@where(:a.>2)
@by(:b, meanX =mean(:x), meanY =mean(:y))
@orderby(:meanX)
@select(:meanX, :meanY, var =:b)
end
The text was updated successfully, but these errors were encountered:
It would be nice if the
@linq
macro natively supported using a begin block. The related example in the docs requires using the@>
macro from Lazy.jl, and thus requires introducing Lazy.jl as a dependency of one's package.What I have in mind is syntax like the following:
The text was updated successfully, but these errors were encountered: