Can any one suggest what package to use for the calculation graphlet degree distribution agreement in r
1
0
Entering edit mode
8.1 years ago
beingseema03 ▴ 10

I have used igraph library for the PPI network analysis. My network is unweighted and undirected. Igraph provides a function called graphlets but it models the weighted networks. There is one package called ergm.graphlets but i was unable to get any proper documentation with examples of this package. Can any one suggest which package to use..?? Or any other tool suitable for graphlet calculation. My example script is below.

library(igraph)
g2 <- graph.formula(A:B - A:C, X:Z - X:Y - X:B, C:Z , C:X )
g2
plot(g2)
r graphlets • 2.2k views
ADD COMMENT
0
Entering edit mode
8.1 years ago

An unweighted graph is simply a weighted graph in which all weights are equal so simply convert your graph to a weighted one with all weights equal to 1 with E(g2)$weight<-1.

ADD COMMENT
0
Entering edit mode

@jean Thanks for reply. But then how to find Graphlets degree distribution based on the graphlet count..??

ADD REPLY

Login before adding your answer.

Traffic: 2251 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