How to extract the subcluster based on PCC (pearson correlation coefficient) in Hierarchical Clustering ?
1
0
Entering edit mode
5.6 years ago
BioLite ▴ 20

Hi, company, I am doing a Hierarchical Clustering with a gene expression data based on PCC (Pearson correlation coefficient), and want to extract the subcluster whose sum of PCC is the highest, I know cutree() can help me extract subgroup, however, how to output the highest PCC group? Any ideas? Thank you very much! BTW, here is my cluster code:

hc_w2=hclust(as.dist( 1-cor(t(clu_w2),method = "pearson")),method = "complete")
Hierarchical Clustering extract subcluster PCC • 1.8k views
ADD COMMENT
0
Entering edit mode

Maybe I can use cutree() extract every subgroup, and then calculate their PCC summations then making a comparison? But this doesn't like the best method?

ADD REPLY
0
Entering edit mode
5.6 years ago

Take a look at my answers, here:

You want to use:

cutree(MyTree, h=0.7) # cut at height 0.7

Kevin

ADD COMMENT

Login before adding your answer.

Traffic: 1941 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6