Skip to content
Prev 177376 / 398521 Next

Kruskal's MDS results

Dieter Vanderelst <Dieter.Vanderelst <at> ua.ac.be> writes:
listed there.
is in "percent". Does this mean,
from 0 to 1) value multiplied by
values from 0 to 100. So, this
Yes, it is stress multplied with 100 which makes it "per cent" instead of "per
unit". You can see this also in the software. The extract is from VR_mds_fn
function in MASS.c:


    sstar = 0.0;
    tstar = 0.0;
    for (i = 0; i < n; i++) {
        tmp = y[i] - yf[i];
        sstar += tmp * tmp;
        tstar += y[i] * y[i];
    }
    ssq = 100 * sqrt(sstar / tstar);
    
The last line has the multiplication, the previous collect the terms for the
stress. 

Best wishes, Jari Oksanen