randomstress | R Documentation |
Creates random dissimilarity matrices (n objects), fits an MDS, and returns the stress values of each MDS fit.
randomstress(n, ndim, nrep = 100, type = c("ratio", "interval", "ordinal", "mspline"))
n |
Number of objects |
ndim |
Number of dimensions for MDS |
nrep |
Number of random samples |
type |
MDS type |
The random dissimilarities are drawn from a U(0,1) distribution.
Returns a vector with stress values.
Spence I., Ogilvie, J.C. (1973). A table of expected stress values for random rankings in nonmetric multidimensional scaling. Multivariate Behavioral Research, 8, 511-517.
Mair, P., Groenen, P. J. F., De Leeuw, J. (2022). More on multidimensional scaling in R: smacof version 2. Journal of Statistical Software, 102(10), 1-47. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.18637/jss.v102.i10")}
## 8 objects, 2 dimensions, interval MDS (50 replications)
stressvec <- randomstress(n = 8, ndim = 2, nrep = 50, type = "interval")
mean(stressvec)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.