You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think I have a rough idea how to do this. Basically, at each merge step, I will only consider merge 2 clusters if they are adjacent and has the smallest distance.
If someone can briefly walk me through the logic of the code, I will love to add this as an option to the package. I will also try to decipher the package myself, of course.
Hello, thank you for the great package. This is a question rather than a bug report.
I wonder if this package supports adjacency-constrained clustering? Given distance matrix, I want to ensure that my clusters are all "contiguous"
For example,
hclust(1 .- cor(x))
results in non-continuous members:I need something like
1, 1, 2, 2, 2
where cluster members are contiguous and increasing.Thank you in advance.
The text was updated successfully, but these errors were encountered: