R:使用正则表达式。如何在write.gexf后面可视化XLM代码

时间:2014-02-26 19:03:59

标签: r function gephi

我有一个非常简单的问题。在R中运行rgexf我使用代码

require(rgexf)
vertices <- as.data.frame(cbind(seq(1,10),seq(1,10)))
colnames(vertices) <- c('Id','Label')
edges <- as.data.frame(cbind(c(5,1,2),c(1,1,3)))
colnames(edges) <- c('Source','Target')

将一个名为&#39; testgex.gexf&#39;的图形导入Gephi。与节点分开。在vertices中给出的边缘。 edges。为此,我运行了函数

write.gexf(output='testgex.gexf',nodes=vertices,edges=edges,defaultedgetype = "undirected")

在R中的输出只是

GEXF graph successfully written at:
...

其中点是&#39; testgex.gexf&#39;的路径。

我想想看后面的XLM代码 write.gexf,相反。例如,这可以在here中的@gvegayon的答案中显示 在Bitbucket rgexf page

怎么做?

1 个答案:

答案 0 :(得分:1)

只是不包含output=testgexf.gexf,或者您可以在文本编辑器中打开.gexf文件