在 R 中读取 Gephi 图
Reading a Gephi graph in R
我需要将 Gephi 图读入 Rstudio。相反 - 将 R 图读入 Gephi - 我找到了 rgexf 包和 write.gexf 函数。但是显然没有 read.gexf :)
有人能解决这个小问题吗?
此致。
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()
应该是您问题的答案;)
我需要将 Gephi 图读入 Rstudio。相反 - 将 R 图读入 Gephi - 我找到了 rgexf 包和 write.gexf 函数。但是显然没有 read.gexf :)
有人能解决这个小问题吗?
此致。
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()
应该是您问题的答案;)