Description Usage Arguments Details Value Author(s) Examples
Create a link matrix which links every feature in similarity matrix with another.
1 | createLink0Matrix(similarityMatrix)
|
similarityMatrix |
|
createLink0Matrix creates a matrix
from a similarity
matrix which includes all connections between features in the
similarity matrix, but
exclude links which have a similarity of exactly 0.
createLink0Matrix returns a matrix
that gives per each row
information on linked features
Thomas Naake, thomasnaake@googlemail.com
1 2 3 4 5 6 | data("binnedMSP", package = "MetCirc")
## truncate binnedMSP
binnedMSP <- binnedMSP[1:28,]
namesPrec <- rownames(binnedMSP)
similarityMat <- createSimilarityMatrix(binnedMSP)
link0Mat <- createLink0Matrix(similarityMatrix = similarityMat)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.