-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
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
Nested transform is broken on master branch #176
Comments
There is a lot of weird stuff going on. I added a
|
I have found the answer. The problem is here,
I have to re-sort the output to retain consistency with previous If I instead do
Then everything works as expected. I will spend more time on an MWE to fully understand why things are working. Options are
|
I have opted for option 2, to break |
Given this data frame:
A plain transform works fine:
But if I nest the result of the previous transform with another one, it doesn't work:
If I assign it to a temp variable then it works properly. So it's probably an issue with the macro.
My versions:
The text was updated successfully, but these errors were encountered: