-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
remove FILTERED #87
remove FILTERED #87
Conversation
deparse1(get_dplyr_call(merged_selectors22, 1L, jk22)), | ||
deparse1(get_dplyr_call(merged_selectors22, 2L, jk22)), | ||
deparse1(get_dplyr_call(merged_selectors22, 3L, jk22)) |
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.
This change is because we make calls using c(...)
instead of call("c", c(...))
. Specifically here (below) where we call pivot_longer
with cols = c(x, y , z)
instead of cols = quote(c(x, y, z))
. It's not something we need to be worried about because eval
understands that.
pivot_longer_call <- as.call(list(
quote(tidyr::pivot_longer),
cols = if (length(pl_cols)) pl_cols else quote(tidyselect::everything()),
names_to = "MEASURE",
values_to = "VALUE"
))
Here is what I mean
r$> call("a", list(x = c(1, 2)))[[2]]
# $x
# [1] 1 2
r$> quote(a(x = c(1, 2)))[[2]]
# c(1, 2)
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.
thanks for sorting this
Code Coverage Summary
Results for commit: ffcb708 Minimum allowed coverage is ♻️ This comment has been updated with latest results |
Part of insightsengineering/teal.slice#76
Note:
The merge vignettes now work but I get the following warnings:
![image](https://user-images.githubusercontent.com/15201933/180255010-94610dce-34af-49c7-8318-61539795e62f.png)
EDIT: Warning does not seem reproducible
See insightsengineering/teal.slice#77