Is your feature request related to a problem? Please describe.
There are are few places in the codebase where row and column indices are combined with paste(). This is done in order to check a vector of pairs against another vector of pairs. For large datasets, this produces two large character vectors.
Describe the solution you'd like
We could "hash" the combinations in some way (e.g. a simple pairing function would be ideal). Better yet would be a list-wise %in% operator, like the one the collapse package provides.
Is your feature request related to a problem? Please describe. There are are few places in the codebase where row and column indices are combined with
paste()
. This is done in order to check a vector of pairs against another vector of pairs. For large datasets, this produces two large character vectors.Describe the solution you'd like We could "hash" the combinations in some way (e.g. a simple pairing function would be ideal). Better yet would be a list-wise %in% operator, like the one the collapse package provides.