I have data and tried to do clustering on it. every time I run the code with the below statements it changes the angle of the shape but still the same below shape
mds = manifold.MDS(max_iter=200, eps=1e-4, n_init=1,dissimilarity='precomputed')
dp_mds = mds.fit_transform(dist)
Does that normal?

