We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be nice to allow assignments (intermediate or at the end) of a chain, such that code like this :
julia> using DataFramesMeta; julia> df = DataFrame(a = [1, 2]); julia> @chain df begin @transform(y = :a) newdata = _ end; julia> newdata ERROR: UndefVarError: newdata not defined
would work. This could also be very helpful for "debugging".
(@pdeffebach, see also here)
The text was updated successfully, but these errors were encountered:
That actually works these days, just forgot to close the issue:
julia> @chain begin [1, 2, 3] sum d = _ end 6 julia> d 6
Sorry, something went wrong.
Thanks!
No branches or pull requests
It would be nice to allow assignments (intermediate or at the end) of a chain, such that code like this :
would work. This could also be very helpful for "debugging".
(@pdeffebach, see also here)
The text was updated successfully, but these errors were encountered: