seq_sim | R Documentation |
Compute similarity scores between sequences of integers
seq_sim(
a,
b,
method = c("osa", "lv", "dl", "hamming", "lcs", "qgram", "cosine", "jaccard", "jw"),
q = 1,
...
)
a |
|
b |
|
method |
Method for distance calculation. The default is |
q |
Size of the |
... |
additional arguments are passed on to |
A numeric
vector of length max(length(a),length(b))
. If one of the
entries in a
or b
is NA_integer_
, all comparisons with that
element result in NA
. Missings occurring within the sequences are treated
as an ordinary number (the representation of NA_integer_
).
seq_dist
, seq_amatch
L1 <- list(1:3,2:4)
L2 <- list(1:3)
seq_sim(L1,L2,method="osa")
# note how missing values are handled (L2 is recycled over L1)
L1 <- list(c(1L,NA_integer_,3L),2:4,NA_integer_)
L2 <- list(1:3)
seq_sim(L1,L2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.