Description Usage Arguments Details Value References See Also Examples
Computes similarity index between two encodings.
1 | calc_si(a, b)
|
a |
encoding (see |
b |
encoding to which |
Briefly, the similarity index is a fraction of elements that have the same pairing in both encodings. Pairing is a binary variable, that has value 1 if two elements are in the same group and 0 if not. For more details, see references.
the value of similarity index.
Stephenson, J.D., and Freeland, S.J. (2013). Unearthing the Root of Amino Acid Similarity. J Mol Evol 77, 159-169.
calc_ed
: calculate the encoding distance between two encodings.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # example from Stephenson & Freeland, 2013 (Fig. 6)
enc1 <- list(`1` = "A",
`2` = c("F", "E"),
`3` = c("C", "D", "G"))
enc2 <- list(`1` = c("A", "G"),
`2` = c("C", "D", "E", "F"))
enc3 <- list(`1` = c("D", "G"),
`2` = c("E", "F"),
`3` = c("A", "C"))
calc_si(enc1, enc2)
calc_si(enc2, enc3)
calc_si(enc1, enc3)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.