quantile,distancematrix-method | R Documentation |
Extend the stats quantile
function for handling distancematrix objects.
## S4 method for signature 'distancematrix'
quantile(x, probs, ...)
x |
A distancematrix object. |
probs |
numeric vector or probabilities with values in [0,1]. |
... |
Additional arguments, passed to |
The upper.triangular values of the distance matrix object are passed to the
quantile
function.
numeric vector of quantiles corresponding to the given probabilities
Cole Beck
plainmatrix<-as.matrix(dist(sample(1:25, 8, replace=TRUE)))
mdm<-distancematrix(plainmatrix)
quantile(mdm, probs=c(0.0, 0.25, 0.50, 0.75, 1.00))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.