join_condition: join_cnd

Description Usage Arguments

Description

join_cnd

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
join_cnd(
  left,
  right,
  ...,
  .type = "inner",
  .selector = "all",
  .suffix = c("__l", "__r"),
  .enforce_suffix = FALSE
)

inner_join_cnd(
  left,
  right,
  ...,
  .selector = "all",
  .suffix = c("__l", "__r"),
  .enforce_suffix = FALSE
)

left_join_cnd(
  left,
  right,
  ...,
  .selector = "all",
  .suffix = c("__l", "__r"),
  .enforce_suffix = FALSE
)

right_join_cnd(
  left,
  right,
  ...,
  .selector = "all",
  .suffix = c("__l", "__r"),
  .enforce_suffix = FALSE
)

full_join_cnd(
  left,
  right,
  ...,
  .selector = "all",
  .suffix = c("__l", "__r"),
  .enforce_suffix = FALSE
)

Arguments

left

LHS table.

right

RHS table

...

Joining conditions, where .x refers to RHS table and .y referes to LHS table. E.g. .x$hp > .y$mpg. Comma-separated conditions are `&`.

.type

Type of the performed join.

.selector

If multiple matches, which RHS to select

.suffix

Suffixes that are added to the repeating columns.

.enforce_suffix

If TRUE, enforces suffixes on all columns.


Ilia-Kosenkov/RLibs documentation built on Jan. 26, 2020, 2:21 p.m.