-
Notifications
You must be signed in to change notification settings - Fork 57
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
Implement pick()
#397
Implement pick()
#397
Conversation
Top level pick calls aren't expanded in this PR's current state. For example this fails
My first thought was to just change the Line 33 in 5c80dc3
But I think the info we need is just whether it's a top-level expression; we could avoid checking for
I'd lean towards the second option, but I don't think there are real issues with either, just a style difference. |
Ready for review again. Simplified per the suggestion - the logic seems much better this way. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. I'm pretty happy to have this feature
Closes #341
Overview: Translate
pick()
andacross()
calls to adata.table()
call.