Description Usage Arguments Examples
View source: R/distance_join.R
This differs from difference_join
in that it considers
all of the columns together when computing distance. This allows it
to use metrics such as Euclidean or Manhattan that depend on multiple
columns. Note that if you are computing with longitude or latitude,
you probably want to use geo_join
.
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | distance_join(
x,
y,
by = NULL,
max_dist = 1,
method = c("euclidean", "manhattan"),
mode = "inner",
distance_col = NULL
)
distance_inner_join(
x,
y,
by = NULL,
method = "euclidean",
max_dist = 1,
distance_col = NULL
)
distance_left_join(
x,
y,
by = NULL,
method = "euclidean",
max_dist = 1,
distance_col = NULL
)
distance_right_join(
x,
y,
by = NULL,
method = "euclidean",
max_dist = 1,
distance_col = NULL
)
distance_full_join(
x,
y,
by = NULL,
method = "euclidean",
max_dist = 1,
distance_col = NULL
)
distance_semi_join(
x,
y,
by = NULL,
method = "euclidean",
max_dist = 1,
distance_col = NULL
)
distance_anti_join(
x,
y,
by = NULL,
method = "euclidean",
max_dist = 1,
distance_col = NULL
)
|
x |
A tbl |
y |
A tbl |
by |
Columns by which to join the two tables |
max_dist |
Maximum distance to use for joining |
method |
Method to use for computing distance, either euclidean (default) or manhattan. |
mode |
One of "inner", "left", "right", "full" "semi", or "anti" |
distance_col |
If given, will add a column with this name containing the distance between the two |
1 2 3 4 5 6 7 8 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.