Skip to content

Commit

Permalink
typos corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
BERENZ committed May 7, 2024
1 parent d0cc766 commit 51c5431
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion R/method_nnd.R
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ method_nnd <- function(x,
control) {

l_ind <- rnndescent::rnnd_build(data = x,
k = if (nrow(x) < control$nnd$k_build) nrow(x)-1 else control$nnd$k_build,
k = if (nrow(x) < control$nnd$k_build) nrow(x) else control$nnd$k_build,
metric = distance,
verbose = verbose,
n_threads = n_threads,
Expand Down
1 change: 0 additions & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ Deduplication using the `blocking` function. Output contains information:

```{r}
blocking_result <- blocking(x = df_example$txt)
## data frame with indices and block
blocking_result
```

Expand Down

0 comments on commit 51c5431

Please sign in to comment.