1

我正在尝试使用此处的示例代码来自己制作iGraph网络图plotly和鞋拔,data.frames而不是使用示例空手道俱乐部数据。绘制图表时,似乎忽略了边缘列表,并且正在建立一堆随机连接。我认为标签或边缘是错误的,但我不能说。

library(igraph)
library(plotly)

setwd('C:/Users/Andrew Riffle/Documents/MEGAsync/code/R/link_analysis')

ID <- c(1:50)
nodes <- data.frame(ID)

Source <- c(23, 24, 36, 20, 36, 41, 12, 8, 18, 28)
Target <- c(5, 7, 9, 35, 23, 12, 38, 29, 33, 45)
links <- data.frame(Source, Target)

net <- graph_from_data_frame(d=links, vertices=nodes, directed=FALSE)

net <- simplify(net, remove.multiple = F, remove.loops = T)

tkplot(net, vertex.label=nodes$id, vertex.label.color='white', layout=layout.fruchterman.reingold)

#####Begin plotly example code unmodified unless commented#####

G <- upgrade_graph(net) #put my iGraph object instead of the karate club one
L <- layout.circle(G)

vs <- V(G)
es <- as.data.frame(get.edgelist(G))

Nv <- length(vs)
Ne <- length(es[1]$V1)

Xn <- L[,1]
Yn <- L[,2]

network <- plot_ly(x = ~Xn, y = ~Yn, mode = "markers", text = vs$name, hoverinfo = "text")

edge_shapes <- list()
for(i in 1:Ne) {
  v0 <- es[i,]$V1
  v1 <- es[i,]$V2

  edge_shape = list(
    type = "line",
    line = list(color = "#030303", width = 0.3),
    x0 = Xn[v0],
    y0 = Yn[v0],
    x1 = Xn[v1],
    y1 = Yn[v1]
  )

  edge_shapes[[i]] <- edge_shape
}

axis <- list(title = "", showgrid = FALSE, showticklabels = FALSE, zeroline = FALSE)

p <- layout(
  network,
  title = 'Test Network', #Changed the title
  shapes = edge_shapes,
  xaxis = axis,
  yaxis = axis
)

p #added a call to display p instead of upload to plot.ly

当我运行它时,我得到了这个漂亮漂亮的 iGraph,它由Plotly. 但是,边缘不正确。似乎只有 ID 的 1-10 正在连接,并且只连接到小于 10 的其他 ID。这些连接都没有在下面的边缘列表中。

   Source Target
1      24     35
2      12     23
3      41     12
4      23      7
5      18      5
6      20      9
7      28     29
8      36     45
9       8     33
10     36     38

有谁看到我做错了什么?帮助表示赞赏。

4

2 回答 2

1

发现教程其实是错的。如果您绘制相同的空手道网络 usingplot与 using 相比plotly,其中有许多连接plot不在plotly.

我已经放弃尝试完成这项工作,visNetwork 是一个很好的选择,我更容易弄清楚。建议任何有类似问题的人阅读本文。

于 2017-08-17T15:05:56.180 回答
0

我知道对于 OP 来说有点太晚了,但对于其他偶然发现同样问题的人来说(就像我一样)。

我可以建议在教程源代码中进行以下五处更改:

G <- upgrade_graph(net)
L <- layout.circle(G)
rownames(L) <- get.vertex.attribute(G)$name           #added line (#1 out of 5)

vs <- V(G)
es <- as.data.frame(get.edgelist(G))

Nv <- length(vs)
Ne <- length(es[1]$V1)

Xn <- L[,1]
Yn <- L[,2]

network <- plot_ly(x = ~Xn, y = ~Yn, mode = "markers", text = vs$name, hoverinfo = "text")

edge_shapes <- list()
for(i in 1:Ne) {
  v0 <- es[i,]$V1
  v1 <- es[i,]$V2

  edge_shape = list(
    type = "line",
    line = list(color = "#030303", width = 0.3),
    x0 = L[which(v0==rownames(L)),][1],               #changed line (#2 out of 5)                
    y0 = L[which(v0==rownames(L)),][2],               #changed line (#3 out of 5)
    x1 = L[which(v1==rownames(L)),][1],               #changed line (#4 out of 5)
    y1 = L[which(v1==rownames(L)),][2]                #changed line (#5 out of 5)
  )

  edge_shapes[[i]] <- edge_shape
}

axis <- list(title = "", showgrid = FALSE, showticklabels = FALSE, zeroline = FALSE)

p <- layout(
  network,
  title = 'Test Network', #Changed the title
  shapes = edge_shapes,
  xaxis = axis,
  yaxis = axis
)

p

现在工作正常。

于 2018-01-10T19:40:25.247 回答