dplyr_extending | R Documentation |
These three functions, along with names<-
and 1d numeric [
(i.e. x[loc]
) methods, provide a minimal interface for extending dplyr
to work with new data frame subclasses. This means that for simple cases
you should only need to provide a couple of methods, rather than a method
for every dplyr verb.
These functions are a stop-gap measure until we figure out how to solve the problem more generally, but it's likely that any code you write to implement them will find a home in what comes next.
dplyr_row_slice(data, i, ...)
dplyr_col_modify(data, cols)
dplyr_reconstruct(data, template)
data |
A tibble. We use tibbles because they avoid some inconsistent subset-assignment use cases. |
i |
A numeric or logical vector that indexes the rows of |
cols |
A named list used to modify columns. A |
template |
Template data frame to use for restoring attributes. |
This section gives you basic advice if you want to extend dplyr to work with your custom data frame subclass, and you want the dplyr methods to behave in basically the same way.
If you have data frame attributes that don't depend on the rows or columns
(and should unconditionally be preserved), you don't need to do anything.
The one exception to this is if your subclass extends a data.frame
directly rather than extending a tibble. The [.data.frame
method does not
preserve attributes, so you'll need to write a [
method for your subclass
that preserves attributes important for your class.
If you have scalar attributes that depend on rows, implement a
dplyr_reconstruct()
method. Your method should recompute the attribute
depending on rows now present.
If you have scalar attributes that depend on columns, implement a
dplyr_reconstruct()
method and a 1d [
method. For example, if your
class requires that certain columns be present, your method should return
a data.frame or tibble when those columns are removed.
If your attributes are vectorised over rows, implement a
dplyr_row_slice()
method. This gives you access to i
so you can
modify the row attribute accordingly. You'll also need to think carefully
about how to recompute the attribute in dplyr_reconstruct()
, and
you will need to carefully verify the behaviour of each verb, and provide
additional methods as needed.
If your attributes that are vectorised over columns, implement
dplyr_col_modify()
, 1d [
, and names<-
methods. All of these methods
know which columns are being modified, so you can update the column
attribute according. You'll also need to think carefully about how to
recompute the attribute in dplyr_reconstruct()
, and you will need to
carefully verify the behaviour of each verb, and provide additional
methods as needed.
arrange()
, filter()
, slice()
(and the rest of the slice_*()
family), semi_join()
, and anti_join()
work by generating a vector of
row indices, and then subsetting with dplyr_row_slice()
.
mutate()
generates a list of new column value (using NULL
to indicate
when columns should be deleted), then passes that to dplyr_col_modify()
.
It also uses 1d [
to implement .keep
, and will call relocate()
if
either .before
or .after
are supplied.
summarise()
and reframe()
work similarly to mutate()
but the data
modified by dplyr_col_modify()
comes from group_data()
or is built
from .by
. Note that this means that the data frames returned by
summarise()
and reframe()
are fundamentally new data frames, and
will not retain any custom subclasses or attributes.
select()
uses 1d [
to select columns, then names<-
to rename them.
rename()
just uses names<-
. relocate()
just uses 1d [
.
inner_join()
, left_join()
, right_join()
, and full_join()
coerce x
to a tibble, modify the rows, then use dplyr_reconstruct()
to convert back to the same type as x
.
nest_join()
converts both x
and y
to tibbles, modifies the rows,
and uses dplyr_col_modify()
to handle modified key variables and the
list-column that y
becomes. It also uses dplyr_reconstruct()
to convert
the outer result back to the type of x
, and to convert the nested tibbles
back to the type of y
.
distinct()
does a mutate()
if any expressions are present, then
uses 1d [
to select variables to keep, then dplyr_row_slice()
to
select distinct rows.
Note that group_by()
and ungroup()
don't use any of these generics and
you'll need to provide methods for them directly, or rely on .by
for
per-operation grouping.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.