Correlation matrix for building networks

I used the MixOmics package in R for two matrices (canonical correlation analysis), and I have a resulting correlation matrix. I would like to build a correlation network from the result. I used to think about using the gene set correlation analysis package, but I don’t know how to install it, and there are no sources via the Internet to install it in R (http://www.biostat.wisc.edu/~kendzior/GSCA/) .

Also, could you suggest what other packages I could use to create networks with a correlation matrix as input? I was thinking about Rgraphviz, but I don't know if this is possible.

+5
source share
2 answers

fooobar.com/questions/185891/...

qgraph . , . , . , .

( ), 240 .

library("qgraph")
data(big5)
data(big5groups)
qgraph(cor(big5),minimum=0.25,cut=0.4,vsize=2,groups=big5groups,legend=TRUE,borders=FALSE)
title("Big 5 correlations",line=-2,cex.main=2)

enter image description here

( Fruchterman-Reingold), , :

enter image description here

. http://www.jstatsoft.org/v48/i04/paper

+6

network sna CRAN. .

+3

All Articles