search for: readdistfil

Displaying 1 result from an estimated 1 matches for "readdistfil".

Did you mean: readdistfile
2001 Nov 01
1
Erratic behaviour of sammon()
...g to cor() on the three columns of 'vec1' and 'vec2', they are identical. However, if I use sammon() with initialising from 'vec1' or 'vec2', I get different results. (SAMMON() is a wrapper function). This I did on a Linux machine (R version 1.3.1): > dst <- ReadDistFile("PA.lnk") Loading required package: mva > vec1 <- MDS(dst, 3) > WriteVectorFile(vec1, "outfile") > vec2 <- ReadVectorFile("outfile") > cor(vec1[,1], vec2[,1]) [1] 1 > cor(vec1[,2], vec2[,2]) [1] 1 > cor(vec1[,3], vec2[,3]) [1] 1 >...