简体   繁体   中英

how to generate grouping variable based on correlation?

 library(magrittr)
 library(dplyr)
 V1 <- c("A","A","A","A","A","A","B","B","B","B", "B","B","C","C","C","C","C","C","D","D","D","D","D","D","E","E","E","E","E","E")
 V2 <- c("A","B","C","D","E","F","A","B","C","D","E","F","A","B","C","D","E","F","A","B","C","D","E","F","A","B","C","D","E","F")
 cor <- c(1,0.8,NA,NA,NA,NA,0.8,1,NA,NA,NA,NA,NA,NA,1,0.8,NA,NA,NA,NA,0.8,1,NA,NA,NA,NA,NA,NA,1,0.9)


 df <- data.frame(V1,V2,cor)

 # exclude rows where cor=NA
 df <- df[complete.cases(df)==TRUE,]

This is the full data frame, cor=NA represents a correlation smaller than 0.8

 df

   V1 V2 cor
1   A  A 1.0
2   A  B 0.8
7   B  A 0.8
8   B  B 1.0
15  C  C 1.0
16  C  D 0.8
21  D  C 0.8
22  D  D 1.0
29  E  E 1.0
30  E  F 0.9

In the above df, F is not in V1, meaning that F is not of interest

so here I remove rows where V2=F (more generally, V2 equals to value that is not in V1)

 V1.LIST <- unique(df$V1)
 df.gp <- df[which(df$V2 %in% V1.LIST),]

 df.gp

   V1 V2 cor
1   A  A 1.0
2   A  B 0.8
7   B  A 0.8
8   B  B 1.0
15  C  C 1.0
16  C  D 0.8
21  D  C 0.8
22  D  D 1.0
29  E  E 1.0

So now, df.gp is the dataset I need to work on

I drop the unused level in V2 (which is F in the example)

 df.gp$V2 <- droplevels(df.gp$V2)

I do not want to exclude the autocorrelated variables, in case some of the V1 are not correlated with others, and I would like to put each of them in a separated group

By looking at the cor, A and B are correlated, C and D are correalted, and E belongs to a group by itself.

Therefore, the example here should have three groups.

The way I see this, you may have complicated things by working your data straight into a data.frame . I took the liberty of transforming it back to a matrix.

library(reshape2)
cormat <- as.matrix(dcast(data = df,formula = V1~V2))[,-1]
row.names(cormat) <- colnames(cormat)[-length(colnames(cormat))]
cormat

After I had your correlation matrix, it is easy to see which indices or non NA values are shared with other variables.

a <- apply(cormat, 1, function(x) which(!is.na(x)))
a <- data.frame(t(a))
a$var <- row.names(a)
row.names(a) <- NULL
a

  X1 X2 var
1  1  2   A
2  1  2   B
3  3  4   C
4  3  4   D
5  5  6   E

Now either X1 or X2 determines your unique groupings.

Edited by cyrusjan:

The above script is a possible solution when assuming we already select the rows in with cor >= a , where a is a threshold taken as 0.8 in the above question.

Contributed by alexis_laz:

By using cutree and hclust , we can set the threshold in the script (ie h=0.8) as blow.

 cor.gp <- data.frame(cor.gp =
      cutree(hclust(1 - as.dist(xtabs(cor ~ V1 + V2, df.gp))), h = 0.8))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM