change the axis scale in mds plot

change the axis scale in mds plot

0

Hi, I was trying to calculate distance matrix from my dataset to generate aMultidimensional Scaling Plot.
However, values generated from dist() function when I try to calculate the distance matrix are too high. There is a setting to modify it?

d <- dist( data, diag = TRUE, upper = TRUE )


d


         0          0         1         1          2          2          3         3         4         4            
0     0.0000 68539.5393 33573.1135 50894.2207 70578.2982 20347.0745 70435.1249 38158.1997 59292.5268 69776.5004
0 68539.5393     0.0000 36886.1659 19122.1184  2111.8398 51918.3046  1978.4474 31921.6694  9647.1810  1376.4292
1 33573.1135 36886.1659     0.0000 18568.7180 38890.6770 18611.7210 38722.0872  7575.4019 27989.3274 38108.9009
1 50894.2207 19122.1184 18568.7180     0.0000 21092.5528 34135.1095 20920.8795 13725.5401 11183.2031 20331.0117
2 70578.2982  2111.8398 38890.6770 21092.5528     0.0000 53940.1809   367.0356 33946.4947 11618.8036   931.8314
2 20347.0745 51918.3046 18611.7210 34135.1095 53940.1809     0.0000 53801.9337 21530.5768 42965.9619 53150.4690
3 70435.1249  1978.4474 38722.0872 20920.8795   367.0356 53801.9337     0.0000 33780.6044 11486.1160   859.4139
3 38158.1997 31921.6694  7575.4019 13725.5401 33946.4947 21530.5768 33780.6044     0.0000 23204.5176 33160.8060
4 59292.5268  9647.1810 27989.3274 11183.2031 11618.8036 42965.9619 11486.1160 23204.5176     0.0000 10776.8957
4 69776.5004  1376.4292 38108.9009 20331.0117   931.8314 53150.4690   859.4139 33160.8060 10776.8957     0.0000


    > mds <- cmdscale(d, k = 2, add = F) 
    > mds
     [,1]      [,2]
0  47358.298  5817.746
0 -20986.848  1126.265
1  15249.608 -3117.375
1  -2668.105 -3339.063
2 -23030.303  1128.455
2  30486.758 -2477.329
3 -22883.553  1029.804
3  10449.603 -3499.095
4 -11744.748  2139.385
4 -22230.711  1191.206

Thanks


r

• 21 views

updated 17 minutes ago by

&utrif;

370

written 2 hours ago by

&utrif;

40

Read more here: Source link