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

enquos() and enexprs() should have attribute for auto_names #734

Open
hadley opened this issue Feb 28, 2019 · 10 comments
Open

enquos() and enexprs() should have attribute for auto_names #734

hadley opened this issue Feb 28, 2019 · 10 comments
Labels
Milestone

Comments

@hadley
Copy link
Member

hadley commented Feb 28, 2019

So that we can tell what names were user supplied and what names were autogenerated.

(This is will help when unpacking unnamed tibble columns)

@lionel- lionel- added this to the 0.4.0 milestone Jun 11, 2019
@lionel-
Copy link
Member

lionel- commented Jun 12, 2019

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

@hadley
Copy link
Member Author

hadley commented Jun 12, 2019

Yeah, I think that would be fine too

@lionel-
Copy link
Member

lionel- commented Mar 29, 2021

This would still be helpful in packages like dplyr or tibble I believe, right @romainfrancois @krlmlr?

@krlmlr
Copy link
Member

krlmlr commented May 1, 2022

Yes, dplyr:::dplyr_quosures() currently calls enquos() twice for that reason, it would be significantly faster if called only once.

Perhaps unrelated: Are you planning to move endots() to C?

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)

@krlmlr
Copy link
Member

krlmlr commented May 1, 2022

We now have exprs_auto_name(), and ?dots_list documents that this is equivalent to enquos(.named = TRUE) . Do we still need to take action here?

@lionel-
Copy link
Member

lionel- commented May 4, 2022

Are you planning to move endots() to C?

Yes.

We now have exprs_auto_name(), and ?dots_list documents that this is equivalent to enquos(.named = TRUE) . Do we still need to take action here?

Yes because we need a way of determining which names are user-supplied and which names are auto-labelled.

@krlmlr
Copy link
Member

krlmlr commented May 4, 2022

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?

@lionel-
Copy link
Member

lionel- commented May 5, 2022

As I understand this issue is specifically about making the pattern easier without having to use enquos(.named = TRUE) and exprs_auto_name() in two steps. It is a low priority feature and maybe not needed in rlang.

@krlmlr
Copy link
Member

krlmlr commented May 5, 2022

Thanks. Did you mean enquos(.named = FALSE) and exprs_auto_name() ?

@lionel-
Copy link
Member

lionel- commented May 5, 2022

yes sorry

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

No branches or pull requests

3 participants