-
Notifications
You must be signed in to change notification settings - Fork 1
/
DESCRIPTION
24 lines (24 loc) · 922 Bytes
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Package: safejoin
Title: Perform "Safe" Table Joins
Version: 0.2.0
Authors@R:
person(given = "Sam",
family = "Edwardes",
role = c("aut", "cre"),
email = "[email protected]")
Description: The goal of 'safejoin' is to guarantee that when performing joins extra rows are not added to your data. 'safejoin' provides a wrapper around 'dplyr::left_join' that will raise an error when extra rows are unexpectedly added to your data. This can be useful when working with data where you expect there to be a many to one relationship but you are not certain the relationship holds.
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: false
Suggests:
testthat,
knitr,
rmarkdown
Imports:
dplyr,
glue,
lifecycle
RoxygenNote: 7.2.3
URL: https://github.com/SamEdwardes/safejoin
BugReports: https://github.com/SamEdwardes/safejoin/issues
Roxygen: list(markdown = TRUE)