graph: Add nodes and edges

Description Usage Arguments Details Value Functions Note Examples

Description

Add nodes and edges to a sigmajs graph.

Usage

1
2
3
4
5
6
7

Arguments

sg

An object of class sigmajs as instantiated by sigmajs.

data

Data.frame (or list) of nodes or edges.

...

Any column name, see details.

Details

nodes: Must pass id (unique), size and color. If color is omitted, then specify defaultNodeColor in sg_settings, otherwise nodes will be transparent. Ideally nodes also include x and y, if they are not passed then they are randomly generated, you can either get these coordinates with sg_get_layout or sg_layout.

edges: Each edge also must include a unique id as well as two columns named source and target which correspond to node ids. If an edges goes from or to an id that is not in node id.

Value

A modified version of the sg object.

Functions

Note

node also takes a SharedData.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
nodes <- sg_make_nodes()
edges <- sg_make_edges(nodes)

sg <- sigmajs() %>%
  sg_nodes(nodes, id, label, size, color) %>%
  sg_edges(edges, id, source, target)

sg # no layout

# layout
sg %>%
  sg_layout()

# directed graph
edges$type <- "arrow" # directed

# omit color
sigmajs() %>%
  sg_nodes(nodes, id, label, size) %>%
  sg_edges(edges, id, source, target, type) %>%
  sg_settings(defaultNodeColor = "#141414")

# all source and target are present in node ids
all(c(edges$source, edges$target) %in% nodes$id)

JohnCoene/sigmajs documentation built on Feb. 1, 2021, 12:12 p.m.