-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Dedicated function for selecting from current data #6204
Comments
We've also discussed letting And possibly a |
This function feels conceptually more like pick <- function(..., .group_vars = TRUE) {
data <- if (isTRUE(.group_vars)) cur_data_all() else cur_data()
select(data, ...)
} I'm not sure if it's worth attempting to optimise this further. |
We should probably work towards deprecating |
When we implement this I assume we'll also change: across(.cols = everything(), .fns = NULL, ..., .names = NULL, .unpack = FALSE)
if_any(.cols = everything(), .fns = NULL, ..., .names = NULL)
if_all(.cols = everything(), .fns = NULL, ..., .names = NULL) To across(.cols, .fns, ..., .names = NULL, .unpack = FALSE)
if_any(.cols, .fns, ..., .names = NULL)
if_all(.cols, .fns, ..., .names = NULL) Possible with deprecation, something like: if (missing(.cols)) {
lifecycle::deprecate_warn("1.1.0", I("across() without `.cols`"), I("`everything()` to select all columns"))
} |
Yea and if (missing(.cols)) {
lifecycle::deprecate_warn("1.1.0", I("across() without `.cols`"), I("`everything()` to select all columns"))
.cols <- quote(everything())
} |
Also contrary to my earlier example, |
Would it be useful to have a dedicated function (say,
pick()
) to select columns from the current data? Currently,across()
with only a.cols
argument serves this role.I would see a dedicated function having at least three advantages:
pick(1, last_col())
vs.across(c(1, last_col()))
.across()
makes sense when there’s functions to apply, but less so when it’s used just for selecting columns.pick()
seems intuitive for only selecting columns.across(c(1:2, 4), mean)
vs.map_df(pick(1:2, 4), mean)
. The first requires you to know thatacross()
can select columns and apply a function, latter can re-use existing function application methods.The last point is particularly important if/when
...
is deprecated inacross()
(#6073), as funtionality would not be identical anymore. For example:I would see the primary uses for this as:
across()
in e.g.group_by()
selectionsgroup_by(across(c(1, 3:5)))
vs.group_by(pick(1, 3:5))
. Big semantic and syntactic win, IMO.apply(across(1:5), 1, f)
, butapply(pick(1:5), 1, f)
might be more intuitive.I could think of two ways to implement this as a wrapper:
Or:
Although, particularly with the
across()
route, it would seem nicer to reverse the dependency and extract the relevant parts fromacross()
intopick()
instead.I appreciate your consideration for this feature request.
The text was updated successfully, but these errors were encountered: