I am trying to contrast results of various MDS approaches applied on the same dataset and understand their comparative interpretation.
I calculate the goodness of fit for the various models with the functions:
cmdscale(Dataset,2)$GOF #Torgerson (Classical)
smacofSym(Dataset,2)$Stress #Metric
EurocitNM <- smacofSym(Eurocit,2, type="ordinal")$Stress #Non Metric
As a rule of thumb the first value should be >0.8 to be acceptable and the second and third should follow the classification given by Kruskal, J. B. (1964) Multidimensional scaling by optimizing goodness of fit to a nonmetric hypothesis. Psychometrika [p.3].
Now, I would like to make a comparison between these interpretations. I have seen in Patrick Mair, Ingwer Borg, and Thomas Rusch (2016) Goodness-of-Fit Assessment in Multidimensional Scaling and Unfolding Multivariate Behavioral Research [p.774] that :
By default, most MDS programs use a classical scaling solution as starting configuration. Classical scaling (Torgerson, 1952) is an old MDS technique that tackles the problem analytically but it is much less flexible than numerical MDS approaches. Classical scaling often provides a good initial guess.
So, should I compare the Metric and Non Metric configuration matrices with the Torgerson (Classical) configuration, maybe calculating their correlations element-wise? Are Shepard diagrams useful for my goal, should I study them? Are there anymore methods to make this kind of comparison I have in mind?