我想使用 R 包的 igraph 为图形打印派系。我要打印为 ABC 的数据格式(以 Res1、Res2、Res3 格式显示此数据...)
数据: Res1 Res2 重量 AB 10 AC 1 CB 10 SB 1 LA 2
library(igraph)
file <- read.table("GraphDemo.net", header=TRUE)
graph <- graph.data.frame(file, directed=F)
Cliq <- cliques(graph, min = 3, max = NULL)
如果我们想在终端上打印 Cliq
克利克
[[1]] + 3/5 个顶点,命名为:[1] ACB
这一切都很好。但是如果我们想打印到文件:
write.table(t(Cliq), file="demo.dat",sep = "\t",quote=F,row.names = FALSE)
但是文件的结果是: V1 c(1, 2, 5)
我想打印数据作为节点名称 AB C. 什么是出路的家伙..!!