在R中读取Gephi图

时间:2015-02-20 10:18:15

标签: r graph package gephi

我需要将一个Gephi图读入Rstudio。为了做到这一点 - 将R图读入Gephi - 我找到了rgexf包和write.gexf函数。但显然不是read.gexf:)

有没有人能解决这个小问题?

真诚的。

1 个答案:

答案 0 :(得分:5)

https://blog.gephi.org/2013/rgexf-an-r-library-to-work-with-gexf-graph-files/在此页面上您有 rgexf 包中的示例:

# Installing from CRAN and loading
install.packages("rgexf", dependencies=TRUE)
library(rgexf)

# Reading lesmiserables graph (and summarizing)
lesmiserables <- read.gexf("http://gephi.org/datasets/LesMiserables.gexf")
summary(lesmiserables)

所以 - read.gexf()应该是你问题的答案;)

此套餐的主页 - https://bitbucket.org/gvegayon/rgexf/wiki/Home