distShiny | R Documentation |
The function distShiny
takes as an input a numerical matrix
or
data.frame
and returns the distances between the rows and columns
based on the defined method
(e.g. euclidean distance).
distShiny(x, method = "euclidean")
x |
|
method |
|
Internal use in shinyQC
.
matrix
x <- matrix(seq_len(100), nrow = 10, ncol = 10,
dimnames = list(seq_len(10), paste("sample", seq_len(10))))
distShiny(x = x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.