I have been attempting to use R as an alternative to MVSP for cluster analysis and PCA. However, R is giving drastically different outputs from MVSP using all the functions that I've found, including dist, bcdist, hclust and daisy functions. I have also used the distance table output from MVSP as a distance matrix in R, which produces a further different output. It requires a cluster/dendrogram using euclidean distance, sorenson-dice coefficient and average/UPGMA clustering. The problems have been duplicated by a second person/input as well as by myself on multiple computers and two versions. SAS has given the same results as MVSP.
Is there another package I could use (alternative to dist or hclust) or a way to view/test the algorithm in R? Is there something that could cause this and could backdating the version of R to a significantly earlier one work?
Edit; found the problem, the algorithm used in all the functions I tried were not using Sorenson's coefficient, so I used the Proxy package, with the dist function (and the inbuilt method="Dice").