Skip to content

Commit

Permalink
add code styles to logical ops
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleHaynes committed Dec 22, 2024
1 parent d6e311d commit 445a62a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vignettes/datatable-joins.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ merge(x = Products,

## 4. Non-equi join

A non-equi join is a type of join where the condition for matching rows is not based on equality, but on other comparison operators like <, >, <=, or >=. This allows for **more flexible joining criteria**. In `data.table`, non-equi joins are particularly useful for operations like:
A non-equi join is a type of join where the condition for matching rows is not based on equality, but on other comparison operators like `<`, `>`, `<=`, or `>=`. This allows for **more flexible joining criteria**. In `data.table`, non-equi joins are particularly useful for operations like:

- Finding the nearest match.
- Comparing ranges of values between tables.
Expand Down

0 comments on commit 445a62a

Please sign in to comment.