I'd like to use correlation clustering and I figure R is a good place to start.
I can present the data to R as a set of large, sparse vectors or as a table with a pre-computed dissimilarity matrix.
My questions are:
- are there existing
Rfunctions to turn this into ahierarchical clusterwithagnesthat usescorrelation clustering? - will I have to implement the (admittedly simple)
correlation clusteringfunction by hand, if so how do I make it play well withagnes?