getNodesDataFrame {RGraph2js}R Documentation

Create Nodes data.frame from Adjacency matrix and properties for specific nodes

Description

Create Nodes data.frame from Adjacency matrix and properties for specific nodes

Usage

getNodesDataFrame(A, nGlobal = NULL, nProp = NULL)

Arguments

A

signed weighted adjacency matrix

nGlobal

A list of properties for assigning all nodes. Default value is NULL

nProp

A data.frame for assigning some nodes properties Default value is NULL

Value

A data.frame

Author(s)

Sylvain Gubian DL.RSupport@pmi.com

Examples

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]
nGlobal <- list(color="#dedeff")
nProp <- data.frame(shape=c('triangle', 'lozenge'))
rownames(nProp) <- c('C', 'E')
getNodesDataFrame(A=a, nGlobal=nGlobal, nProp=nProp)

[Package RGraph2js version 1.20.0 Index]