Description Usage Arguments Details Value Author(s) Examples
Displays information on connected features of selected features.
| 1 2 3 4 5 6 7 8 | printInformationSelect(
  select,
  spectra = NULL,
  linkDfInd,
  linkDf,
  similarityMatrix,
  roundDigits = 2
)
 | 
| select | 'character', obtained from groupname, 'character' of selected feature | 
| spectra | 'MSpectra' object containing spectra that are compared in 'similarityMatrix' | 
| linkDfInd | 'numeric' indices of selected features | 
| linkDf | 'data.frame' that contains information of linked features for given thresholds | 
| similarityMatrix | 'matrix' that is used to get information on the degree of similarity, 'similarityMat' is an ordered version of a similarity matrix, see '?orderSimilarityMatrix' | 
| roundDigits | 'numeric', how many digits should be displayed? | 
'printInformationSelect' is for internal use.
'character' that is in HTML format
Thomas Naake, thomasnaake@googlemail.com
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | data("spectra", package = "MetCirc")
similarityMat <- compare_Spectra(spectra_tissue[1:10],
    fun = normalizeddotproduct, binSize = 0.01)
linkDf <- createLinkDf(similarityMatrix = similarityMat,
    spectra = spectra_tissue[1:10], 
    condition = c("SPL", "LIM", "ANT", "STY"), lower = 0.5, upper = 1)
## cut link data.frame (here: only display links between groups)
linkDf_cut <- cutLinkDf(linkDf, type = "inter")
groupname <- c(as.character(linkDf_cut[, "spectrum1"]),
            as.character(linkDf_cut[, "spectrum2"]))
groupname <- unique(groupname)
## arbitrarily select a feature
ind <- 2
linkDfInds <- getLinkDfIndices(groupname[ind], linkDf_cut)
MetCirc:::printInformationSelect(groupname[ind], 
    spectra = spectra_tissue[1:10], linkDfInd = linkDfInds, 
    linkDf = linkDf_cut, similarityMatrix = similarityMat)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.