Open co1emi11er2 opened 6 days ago
Although the documentation is not yet updated, TidierData is shifting to use the following method of interpolation that leverages @eval
and $
as a more robust way that avoids challenging edge cases
Demarcate the variables with $
and start the chain with @eval
t = :bar
s = "foo"
@eval @chain df begin
@filter($t == $s)
end
This should work already without needing to update the package.
The following does not work:
This works though: