powered by
Computes the multidimensional scaling of a matrix of dissimilarities between stimuli. Mds is based on smacof algorithm. The Mds configuration is rotated in order to get orthogonal dimensions sorted by decreasing variance.
MdsDiss(MatDissimil, ndim = 2, metric = TRUE, ties = "primary", itmax = 5000, eps = 1e-06)
A matrix of dissimilarities
Dimension of the Mds
Metric or not metric Mds
Treatment of ties in case of non metric Mds
Maximum number of iterations
Epsilon for Mds computation
List of the following components :
Mds configuration of the stimuli
Percentage of inertia of the dimensions of Mds
Stress of the Mds solution
# NOT RUN { data(AromaSort) Aroma<-SortingPartition(AromaSort) ListDissimil<-Dissimil(Aroma) MatDissim<-apply(simplify2array(ListDissimil),c(1,2),'sum') Mdsres<-MdsDiss(MatDissim) # }
Run the code above in your browser using DataLab