getEdgesDataFrame {RGraph2js} | R Documentation |
data.frame
from Adjacency matrix and propertiesCreate Edges data.frame
from Adjacency matrix and properties
getEdgesDataFrame(A, eGlobal = NULL, eProp = NULL)
A |
signed weighted adjacency matrix |
eGlobal |
A |
eProp |
A |
A data.frame
Sylvain Gubian DL.RSupport@pmi.com
v <- c(0, 0, 1, 1, 0, 0, 0, 0, 0, 0, -1, 0, 0, 1, 0) a <- matrix(v, 3, 5) colnames(a) <- LETTERS[1:5] rownames(a) <- LETTERS[1:3] eGlobal <- list(color="#5555ff") eProp <- data.frame(from=c('A','C'), to=c('B', 'A'), width=c(2,2)) getEdgesDataFrame(A=a, eGlobal=eGlobal, eProp=eProp)