You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I've seen that you are using data.table extended join abilities to perform some joins. There is an alternative package, probably less efficient than data.table, that avoid the tibble -> data.table -> tibble conversion:
Here is a code snipset showing how to use it in your package for instance here in NNW
The fuzzyjoin package is excellent, and I have used it in other projects. For this package I chose data.table to avoid a Bioconductor dependency on IRanges, and because it seemed to be faster, but the round-trip conversion is certainly klunky. Hopefully one day we can use tidyverse/dplyr#2240.
Hi,
I've seen that you are using data.table extended join abilities to perform some joins. There is an alternative package, probably less efficient than data.table, that avoid the tibble -> data.table -> tibble conversion:
Here is a code snipset showing how to use it in your package for instance here in NNW
I'm not saying this is better than your choice. It just requires less conversion...
Yours,
Erwan
The text was updated successfully, but these errors were encountered: