join_track: Join two datasets and see how many matches there are

View source: R/join_track.R

join_trackR Documentation

Join two datasets and see how many matches there are

Description

Join two datasets and see how many matches there are

Usage

join_track(
  x,
  y,
  by = NULL,
  suffix = c(".x", ".y"),
  .merge = FALSE,
  join_type,
  ...
)

Arguments

x

dataset

y

dataset

by

A character vector of variables to join by

suffix

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

.merge

If TRUE, then joined dataset will contain a variable called .merge that indicates which dataset the row came from

join_type

Which type of join? (full_join, left_join, right_join, inner_join)

...

Other functions passed to the _join function


dmbwebb/trackr documentation built on Oct. 19, 2024, 2:34 a.m.