I have a piece of code like this:
result = KMedoids(n_clusters=n_clusters, max_iter=30, method='pam', metric='precomputed').fit(d_matx)
where d_matx is the distance matrix. My question is: if d_matx is a non symmetric matrix, does the result makes sense? Or it works only with symmetric matrix?
Thanks.