Learn R Programming

RGraph2js (version 1.0.0)

getNodesDataFrame: 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

Examples

Run this code
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)

Run the code above in your browser using DataLab