-
Notifications
You must be signed in to change notification settings - Fork 142
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
enquos() and enexprs() should have attribute for auto_names #734
Comments
Maybe this should be a different function? quos <- quos(foo = bar(), baz(quux), !!letters)
auto_label(quos)
#> # A tibble: 3 x 3
#> expr name generated
#> <quos> <chr> <lgl>
#> 1 bar() foo FALSE
#> 2 baz(quux) baz(quux) TRUE
#> 3 <chr> <chr> TRUE |
Yeah, I think that would be fine too |
This would still be helpful in packages like dplyr or tibble I believe, right @romainfrancois @krlmlr? |
Yes, Perhaps unrelated: Are you planning to move library(rlang)
basic <- function(...) enquos(...)
ignore_empty <- function(...) enquos(..., .ignore_empty = "all")
named_ignore_empty <- function(...) enquos(..., .named = TRUE, .ignore_empty = "all")
bench::mark(
basic(a = 1),
ignore_empty(a = 1),
named_ignore_empty(a = 1)
)
#> # A tibble: 3 × 6
#> expression min median `itr/sec` mem_alloc `gc/sec`
#> <bch:expr> <bch:tm> <bch:tm> <dbl> <bch:byt> <dbl>
#> 1 basic(a = 1) 20.2µs 21.4µs 46119. 0B 46.2
#> 2 ignore_empty(a = 1) 30.1µs 31.8µs 30842. 12.4KB 49.4
#> 3 named_ignore_empty(a = 1) 38.6µs 40.8µs 23991. 21.2KB 48.1 Created on 2022-05-01 by the reprex package (v2.0.1) |
We now have |
Yes.
Yes because we need a way of determining which names are user-supplied and which names are auto-labelled. |
Can't we get that info from the names? Non-empty names are user-supplied, empty names should be auto-labeled? What am I missing? |
As I understand this issue is specifically about making the pattern easier without having to use |
Thanks. Did you mean |
yes sorry |
So that we can tell what names were user supplied and what names were autogenerated.
(This is will help when unpacking unnamed tibble columns)
The text was updated successfully, but these errors were encountered: