computeKNNWeights,phylo-method | R Documentation |
Compute for each vector the weights to apply to it's K nearest neighbors
## S4 method for signature 'phylo'
computeKNNWeights(
object,
K = round(sqrt(length(object$tip.label))),
lcaKNN = FALSE,
minSize = 20
)
object |
tree to use for KNN |
K |
Number of neighbors to consider. |
lcaKNN |
whether to use LCA based KNN (cluster by minimum size), if false defaults to cophenetic distance (random tie breaking). WARNING: lcaKNN doesn't perform well with broad multifurcations |
a list of two items: indices: matrix, cells X neighbors Each row specifies indices of nearest neighbors weights: matrix, cells X neighbors Corresponding weights to nearest neighbors
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.