Skip to content
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

Create quosures in tally_n() #7046

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

Create quosures in tally_n() #7046

wants to merge 2 commits into from

Conversation

krlmlr
Copy link
Member

@krlmlr krlmlr commented Jun 30, 2024

Recent duckplyr checks that all functions used in a dplyr verb are what they pretend they are: tidyverse/duckplyr#179. This works for most cases, except for the n() created by tally_n() . This PR fixes this.

Once we agree on the implementation, I can vendor in a copy of this function into duckplyr.

@krlmlr krlmlr requested a review from DavisVaughan June 30, 2024 16:52
} else {
expr(sum(!!wt, na.rm = TRUE))
new_quosure(expr(sum(!!wt, na.rm = TRUE)), quo_get_env(wt))
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This probably should be:

Suggested change
new_quosure(expr(sum(!!wt, na.rm = TRUE)), quo_get_env(wt))
new_quosure(expr(sum(!!wt, na.rm = TRUE)), baseenv())

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant