Displaying 3 results from an estimated 3 matches for "babelgraph".
2011 Apr 11
1
plot - kamada.kawai layout without arrows
Hi,
I am plotting a graph with kamada.kawai layout. 
But I am getting direction arrows in the graphs.
Please let me know how to avoid this.
g <- watts.strogatz.game(1, 2000, 5, 0.4)
 comps <- clusters(g)$membership
 colbar <- rainbow(max(comps)+1)
 V(g)$color <- colbar[comps+1]
png(filename)
plot(g, layout=layout.kamada.kawai, vertex.size=2, vertex.label=NA)
dev.off()
Please find
2012 Jul 14
0
Compilation Error with Rcpp
Hello,
I am trying to reproduce a code example from 
http://www.babelgraph.org/wp/?p=358 babelgraph  when compiling the function
to call the C++ code I get the following error:
Error in compileCode(f, code, language = language, verbose = verbose) : 
  Compilation ERROR, function(s)/method(s) not created! 
In addition: Warning message:
running command 'C:/PROGRA~1/R/R...
2011 Apr 09
3
Converting edgelist to symmetric matrix
Hi,
I have network data in the form of a couple of edgelists containing weights in 
the format "x,y,weight" whereby x represents row header and y represents column 
header. All edgelists are based on links among 634 nodes and I need to convert 
them into a 634*634 weighted matrix. 
I searched for online help using possible keywords I know, but I could not find 
a clue how to do this in