Mutating joins — mutate-joins (2024)

Mutating joins — mutate-joins (1)

Source: R/join.R

mutate-joins.Rd

Mutating joins add columns from y to x, matching observations based onthe keys. There are four mutating joins: the inner join, and the three outerjoins.

Inner join

An inner_join() only keeps observations from x that have a matching keyin y.

The most important property of an inner join is that unmatched rows in eitherinput are not included in the result. This means that generally inner joinsare not appropriate in most analyses, because it is too easy to loseobservations.

Outer joins

The three outer joins keep observations that appear in at least one of thedata frames:

  • A left_join() keeps all observations in x.

  • A right_join() keeps all observations in y.

  • A full_join() keeps all observations in x and y.

Usage

inner_join( x, y, by = NULL, copy = FALSE, suffix = c(".x", ".y"), ..., keep = NULL)# S3 method for data.frameinner_join( x, y, by = NULL, copy = FALSE, suffix = c(".x", ".y"), ..., keep = NULL, na_matches = c("na", "never"), multiple = "all", unmatched = "drop", relationship = NULL)left_join( x, y, by = NULL, copy = FALSE, suffix = c(".x", ".y"), ..., keep = NULL)# S3 method for data.frameleft_join( x, y, by = NULL, copy = FALSE, suffix = c(".x", ".y"), ..., keep = NULL, na_matches = c("na", "never"), multiple = "all", unmatched = "drop", relationship = NULL)right_join( x, y, by = NULL, copy = FALSE, suffix = c(".x", ".y"), ..., keep = NULL)# S3 method for data.frameright_join( x, y, by = NULL, copy = FALSE, suffix = c(".x", ".y"), ..., keep = NULL, na_matches = c("na", "never"), multiple = "all", unmatched = "drop", relationship = NULL)full_join( x, y, by = NULL, copy = FALSE, suffix = c(".x", ".y"), ..., keep = NULL)# S3 method for data.framefull_join( x, y, by = NULL, copy = FALSE, suffix = c(".x", ".y"), ..., keep = NULL, na_matches = c("na", "never"), multiple = "all", relationship = NULL)

Arguments

x, y

A pair of data frames, data frame extensions (e.g. a tibble), orlazy data frames (e.g. from dbplyr or dtplyr). See Methods, below, formore details.

by

A join specification created with join_by(), or a charactervector of variables to join by.

If NULL, the default, *_join() will perform a natural join, using allvariables in common across x and y. A message lists the variables sothat you can check they're correct; suppress the message by supplying byexplicitly.

To join on different variables between x and y, use a join_by()specification. For example, join_by(a == b) will match x$a to y$b.

To join by multiple variables, use a join_by() specification withmultiple expressions. For example, join_by(a == b, c == d) will matchx$a to y$b and x$c to y$d. If the column names are the same betweenx and y, you can shorten this by listing only the variable names, likejoin_by(a, c).

join_by() can also be used to perform inequality, rolling, and overlapjoins. See the documentation at ?join_by for details onthese types of joins.

For simple equality joins, you can alternatively specify a character vectorof variable names to join by. For example, by = c("a", "b") joins x$ato y$a and x$b to y$b. If variable names differ between x and y,use a named character vector like by = c("x_a" = "y_a", "x_b" = "y_b").

To perform a cross-join, generating all combinations of x and y, seecross_join().

copy

If x and y are not from the same data source,and copy is TRUE, then y will be copied into thesame src as x. This allows you to join tables across srcs, butit is a potentially expensive operation so you must opt into it.

suffix

If there are non-joined duplicate variables in x andy, these suffixes will be added to the output to disambiguate them.Should be a character vector of length 2.

...

Other parameters passed onto methods.

keep

Should the join keys from both x and y be preserved in theoutput?

  • If NULL, the default, joins on equality retain only the keys from x,while joins on inequality retain the keys from both inputs.

  • If TRUE, all keys from both inputs are retained.

  • If FALSE, only keys from x are retained. For right and full joins,the data in key columns corresponding to rows that only exist in y aremerged into the key columns from x. Can't be used when joining oninequality conditions.

na_matches

Should two NA or two NaN values match?

  • "na", the default, treats two NA or two NaN values as equal, like%in%, match(), and merge().

  • "never" treats two NA or two NaN values as different, and willnever match them together or to any other values. This is similar to joinsfor database sources and to base::merge(incomparables = NA).

multiple

Handling of rows in x with multiple matches in y.For each row of x:

  • "all", the default, returns every match detected in y. This is thesame behavior as SQL.

  • "any" returns one match detected in y, with no guarantees on whichmatch will be returned. It is often faster than "first" and "last"if you just need to detect if there is at least one match.

  • "first" returns the first match detected in y.

  • "last" returns the last match detected in y.

unmatched

How should unmatched keys that would result in dropped rowsbe handled?

  • "drop" drops unmatched keys from the result.

  • "error" throws an error if unmatched keys are detected.

unmatched is intended to protect you from accidentally dropping rowsduring a join. It only checks for unmatched keys in the input that couldpotentially drop rows.

  • For left joins, it checks y.

  • For right joins, it checks x.

  • For inner joins, it checks both x and y. In this case, unmatched isalso allowed to be a character vector of length 2 to specify the behaviorfor x and y independently.

relationship

Handling of the expected relationship between the keys ofx and y. If the expectations chosen from the list below areinvalidated, an error is thrown.

  • NULL, the default, doesn't expect there to be any relationship betweenx and y. However, for equality joins it will check for a many-to-manyrelationship (which is typically unexpected) and will warn if one occurs,encouraging you to either take a closer look at your inputs or make thisrelationship explicit by specifying "many-to-many".

    See the Many-to-many relationships section for more details.

  • "one-to-one" expects:

    • Each row in x matches at most 1 row in y.

    • Each row in y matches at most 1 row in x.

  • "one-to-many" expects:

    • Each row in y matches at most 1 row in x.

  • "many-to-one" expects:

    • Each row in x matches at most 1 row in y.

  • "many-to-many" doesn't perform any relationship checks, but is providedto allow you to be explicit about this relationship if you know itexists.

relationship doesn't handle cases where there are zero matches. For that,see unmatched.

Value

An object of the same type as x (including the same groups). The order ofthe rows and columns of x is preserved as much as possible. The output hasthe following properties:

  • The rows are affect by the join type.

    • inner_join() returns matched x rows.

    • left_join() returns all x rows.

    • right_join() returns matched of x rows, followed by unmatched y rows.

    • full_join() returns all x rows, followed by unmatched y rows.

  • Output columns include all columns from x and all non-key columns fromy. If keep = TRUE, the key columns from y are included as well.

  • If non-key columns in x and y have the same name, suffixes are addedto disambiguate. If keep = TRUE and key columns in x and y havethe same name, suffixes are added to disambiguate these as well.

  • If keep = FALSE, output columns included in by are coerced to theircommon type between x and y.

Many-to-many relationships

By default, dplyr guards against many-to-many relationships in equality joinsby throwing a warning. These occur when both of the following are true:

  • A row in x matches multiple rows in y.

  • A row in y matches multiple rows in x.

This is typically surprising, as most joins involve a relationship ofone-to-one, one-to-many, or many-to-one, and is often the result of animproperly specified join. Many-to-many relationships are particularlyproblematic because they can result in a Cartesian explosion of the number ofrows returned from the join.

If a many-to-many relationship is expected, silence this warning byexplicitly setting relationship = "many-to-many".

In production code, it is best to preemptively set relationship to whateverrelationship you expect to exist between the keys of x and y, as thisforces an error to occur immediately if the data doesn't align with yourexpectations.

Inequality joins typically result in many-to-many relationships by nature, sothey don't warn on them by default, but you should still take extra care whenspecifying an inequality join, because they also have the capability toreturn a large number of rows.

Rolling joins don't warn on many-to-many relationships either, but manyrolling joins follow a many-to-one relationship, so it is often useful toset relationship = "many-to-one" to enforce this.

Note that in SQL, most database providers won't let you specify amany-to-many relationship between two tables, instead requiring that youcreate a third junction table that results in two one-to-many relationshipsinstead.

Methods

These functions are generics, which means that packages can provideimplementations (methods) for other classes. See the documentation ofindividual methods for extra arguments and differences in behaviour.

Methods available in currently loaded packages:

  • inner_join(): dbplyr (tbl_lazy), dplyr (data.frame).

  • left_join(): dbplyr (tbl_lazy), dplyr (data.frame).

  • right_join(): dbplyr (tbl_lazy), dplyr (data.frame).

  • full_join(): dbplyr (tbl_lazy), dplyr (data.frame).

See also

Other joins: cross_join(),filter-joins,nest_join()

Examples

band_members %>% inner_join(band_instruments)#> Joining with `by = join_by(name)`#> # A tibble: 2 × 3#> name band plays #> <chr> <chr> <chr> #> 1 John Beatles guitar#> 2 Paul Beatles bass band_members %>% left_join(band_instruments)#> Joining with `by = join_by(name)`#> # A tibble: 3 × 3#> name band plays #> <chr> <chr> <chr> #> 1 Mick Stones NA #> 2 John Beatles guitar#> 3 Paul Beatles bass band_members %>% right_join(band_instruments)#> Joining with `by = join_by(name)`#> # A tibble: 3 × 3#> name band plays #> <chr> <chr> <chr> #> 1 John Beatles guitar#> 2 Paul Beatles bass #> 3 Keith NA guitarband_members %>% full_join(band_instruments)#> Joining with `by = join_by(name)`#> # A tibble: 4 × 3#> name band plays #> <chr> <chr> <chr> #> 1 Mick Stones NA #> 2 John Beatles guitar#> 3 Paul Beatles bass #> 4 Keith NA guitar# To suppress the message about joining variables, supply `by`band_members %>% inner_join(band_instruments, by = join_by(name))#> # A tibble: 2 × 3#> name band plays #> <chr> <chr> <chr> #> 1 John Beatles guitar#> 2 Paul Beatles bass # This is good practice in production code# Use an equality expression if the join variables have different namesband_members %>% full_join(band_instruments2, by = join_by(name == artist))#> # A tibble: 4 × 3#> name band plays #> <chr> <chr> <chr> #> 1 Mick Stones NA #> 2 John Beatles guitar#> 3 Paul Beatles bass #> 4 Keith NA guitar# By default, the join keys from `x` and `y` are coalesced in the output; use# `keep = TRUE` to keep the join keys from both `x` and `y`band_members %>% full_join(band_instruments2, by = join_by(name == artist), keep = TRUE)#> # A tibble: 4 × 4#> name band artist plays #> <chr> <chr> <chr> <chr> #> 1 Mick Stones NA NA #> 2 John Beatles John guitar#> 3 Paul Beatles Paul bass #> 4 NA NA Keith guitar# If a row in `x` matches multiple rows in `y`, all the rows in `y` will be# returned once for each matching row in `x`.df1 <- tibble(x = 1:3)df2 <- tibble(x = c(1, 1, 2), y = c("first", "second", "third"))df1 %>% left_join(df2)#> Joining with `by = join_by(x)`#> # A tibble: 4 × 2#> x y #> <dbl> <chr> #> 1 1 first #> 2 1 second#> 3 2 third #> 4 3 NA # If a row in `y` also matches multiple rows in `x`, this is known as a# many-to-many relationship, which is typically a result of an improperly# specified join or some kind of messy data. In this case, a warning is# thrown by default:df3 <- tibble(x = c(1, 1, 1, 3))df3 %>% left_join(df2)#> Joining with `by = join_by(x)`#> Warning: Detected an unexpected many-to-many relationship between `x` and `y`.#>  Row 1 of `x` matches multiple rows in `y`.#>  Row 1 of `y` matches multiple rows in `x`.#>  If a many-to-many relationship is expected, set `relationship =#> "many-to-many"` to silence this warning.#> # A tibble: 7 × 2#> x y #> <dbl> <chr> #> 1 1 first #> 2 1 second#> 3 1 first #> 4 1 second#> 5 1 first #> 6 1 second#> 7 3 NA # In the rare case where a many-to-many relationship is expected, set# `relationship = "many-to-many"` to silence this warningdf3 %>% left_join(df2, relationship = "many-to-many")#> Joining with `by = join_by(x)`#> # A tibble: 7 × 2#> x y #> <dbl> <chr> #> 1 1 first #> 2 1 second#> 3 1 first #> 4 1 second#> 5 1 first #> 6 1 second#> 7 3 NA # Use `join_by()` with a condition other than `==` to perform an inequality# join. Here we match on every instance where `df1$x > df2$x`.df1 %>% left_join(df2, join_by(x > x))#> # A tibble: 6 × 3#> x.x x.y y #> <int> <dbl> <chr> #> 1 1 NA NA #> 2 2 1 first #> 3 2 1 second#> 4 3 1 first #> 5 3 1 second#> 6 3 2 third # By default, NAs match other NAs so that there are two# rows in the output of this join:df1 <- data.frame(x = c(1, NA), y = 2)df2 <- data.frame(x = c(1, NA), z = 3)left_join(df1, df2)#> Joining with `by = join_by(x)`#> x y z#> 1 1 2 3#> 2 NA 2 3# You can optionally request that NAs don't match, giving a# a result that more closely resembles SQL joinsleft_join(df1, df2, na_matches = "never")#> Joining with `by = join_by(x)`#> x y z#> 1 1 2 3#> 2 NA 2 NA
Mutating joins — mutate-joins (2024)

References

Top Articles
Latest Posts
Article information

Author: Prof. An Powlowski

Last Updated:

Views: 6197

Rating: 4.3 / 5 (44 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Prof. An Powlowski

Birthday: 1992-09-29

Address: Apt. 994 8891 Orval Hill, Brittnyburgh, AZ 41023-0398

Phone: +26417467956738

Job: District Marketing Strategist

Hobby: Embroidery, Bodybuilding, Motor sports, Amateur radio, Wood carving, Whittling, Air sports

Introduction: My name is Prof. An Powlowski, I am a charming, helpful, attractive, good, graceful, thoughtful, vast person who loves writing and wants to share my knowledge and understanding with you.