Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

forceNetwork is not zero indexed

I am trying to create a simple forceNetwork, but the plot won't render. I keep getting the following warning:

Warning message: It looks like Source/Target is not zero-indexed. This is required in JavaScript and so your plot may not render.

How do I fix this? Note that simpleNetwork works fine so the problem seems to be in how I am specifying my data.

library(igraph)
library(networkD3)
set.seed(42)
temp<-data.frame(source=c(1,2,3,4),target=c(2,3,4,4))#csv[1:500,]

links<-data.frame(source=temp$source,target=temp$target)
g<-graph.data.frame(cbind(temp$source,temp$target), directed=T)
nodes<-data.frame(name=1:length(V(g)),group=1)

forceNetwork(Links=links,Nodes = nodes,
             Source = 'source', Target = 'target', 
             NodeID = 'name', Group = 'group')

simpleNetwork(temp)
like image 592
Rilcon42 Avatar asked Nov 03 '16 15:11

Rilcon42


1 Answers

Since networkD3 uses javascript, you need to start your indexing at 0 and not 1 for links. Simply subtract 1 from your nodes/links to reindex:

links = links-1
nodes$name = nodes$name-1 #might want to re-index nodes, too
forceNetwork(Links=links,Nodes = nodes,
             Source = 'source', Target = 'target', 
             NodeID = 'name', Group = 'group')
like image 137
paqmo Avatar answered Sep 23 '22 04:09

paqmo