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

slice_sample() shows strange suggestion when called with namespace #6946

Closed
psychelzh opened this issue Oct 28, 2023 · 1 comment · Fixed by #6955
Closed

slice_sample() shows strange suggestion when called with namespace #6946

psychelzh opened this issue Oct 28, 2023 · 1 comment · Fixed by #6955

Comments

@psychelzh
Copy link

The error is simple as the follow:

dplyr::slice_sample(data.frame(x = 1:100), 10)
#> Error in `dplyr::slice_sample()`:
#> ! `n` must be explicitly named.
#> Did you mean `::(n = 10)`?
#> Did you mean `dplyr(n = 10)`?
#> Did you mean `slice_sample(n = 10)`?
#> Backtrace:
#>     ▆
#>  1. └─dplyr::slice_sample(data.frame(x = 1:100), 10)
#>  2.   └─dplyr:::check_slice_unnamed_n_prop(..., n = n, prop = prop)
#>  3.     └─rlang::abort(bullets, call = error_call)

Created on 2023-10-28 with reprex v2.0.2

@psychelzh
Copy link
Author

psychelzh commented Oct 28, 2023

After inspecting the code, this probably is a bug from rlang::frame_call().

dplyr/R/slice.R

Lines 466 to 470 in 5003583

slice_call <- frame_call(frame = error_call)[[1]]
bullets <- c(
"`n` must be explicitly named.",
i = glue("Did you mean `{slice_call}(n = {as_label(dots[[1]])})`?")
)

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 a pull request may close this issue.

1 participant