sigmajs (version 0.1.2)

sg_noverlap: No overlap

Description

This plugin runs an algorithm which distributes nodes in the network, ensuring that they do not overlap and providing a margin where specified.

Usage

sg_noverlap(sg, ...)

sg_noverlap_p(proxy)

Arguments

sg

An object of class sigmajsas intatiated by sigmajs.

...

any option to pass to the plugin, see official documentation.

proxy

An object of class sigmajsProxy as returned by sigmajsProxy.

Examples

Run this code
# NOT RUN {
nodes <- sg_make_nodes(500)
edges <- sg_make_edges(nodes)

sigmajs() %>%
  sg_nodes(nodes, id, size, color) %>%
  sg_edges(edges, id, source, target) %>%
  sg_layout() %>% 
  sg_noverlap()

# }

Run the code above in your browser using DataLab