Dendro network

The Dendro network is a network visualization that uses a hierarchical type of visualization of data. It is particularly useful when visualizing `hierarchical clustering or tree structures. It contains the root node where the tree graph starts and the parent node where the tree graph ends. It can help for understanding complex information through network visualization.

Syntax:

dendroNetwork(hc, height=500, width=800, fontSize=10, linkColour=”#ccc”,nodeColour=”#fff”, nodeStroke=”steelblue”, textColour=”#111″, textOpacity=0.9,textRotate=NULL, opacity=0.9, margins=NULL, linkType=c(“elbow”, “diagonal”), treeOrientation=c(“horizontal”, “vertical”), zoom=FALSE)

Arguments:

  • hc – A hierarchical (hclust) cluster object.
  • height – The numeric height for the network graph’s frame area in pixels.
  • width – The numeric width for the network graph’s frame area in pixels.
  • fontSize – The numeric font size in pixels for the node text labels.
  • linkColour – A character string specifying the colour you want the link lines to be.
  • nodeColour – A character string specifying the colour you want the node circles to be.
  • nodeStroke – A character string specifying the color you want the node perimeter to be.
  • textColour – A character string specifying the color you want the text to be before they are clicked.
  • textOpacity – The numeric vector or scalar of the proportion opaque you would like the text to be before they are clicked.
  • textRotate – The numeric degrees to rotate text for node text. The default is 0 for horizontal and 65 degrees for vertical.
  • opacity – The numeric value of the proportion opaque you would like the graph elements to be.
  • margins – An integer or a named list/vector of integers for the plot margins.
  • linkType – Character specifying the link type between points.
  • treeOrientation – Character specifying the tree orientation(“vertical”,”horizontal”).
  • zoom – Logical value ( ‘TRUE’ – enable, ‘FALSE’ – disable ).

Consider there is a family consisting of family members and their ancestors, If a Researcher want to collect ancient data about a family like their ancestors related details and he/she wants to visualize those data in an understandable and structured form. In this type of scenario, a Researcher can choose Dendro Network. The family members, their parents, their grandparents, their great grandparents, etc., can be represented as nodes of the network, and the relationship links between them can be represented as edges.

R
#Load library
library(networkD3)

#Creating data
hc <- hclust(dist(USArrests), method="ave")

#dendro_network
dendroNetwork(hc,textColour=c("red","green","orange")[cutree(hc,3)], height=600)

Output:

DENDRO NETWORK

  • Load the library using library(networkD3).
  • Creating US crime data as in hierarchical cluster format.
  • Create dendro network using dendroNetwork(), assign hierarchical cluster variable to hc, add textColour, cut down the tree using cutree() and assign 600 to height.

networkD3 package in R

Data-driven document Network is an R package for creating network graphs which are used for 3-dimensional visualizations of data as network graphs. In R Programming Language networkD3 plots are created using the networkD3 package.

Table of Content

  • Simple Network
  • Force Network
  • Sankey Network
  • Radial Network:
  • Dendro network
  • Chord Network

To use a package in R programming we have to install the package first. For installing the R package in R studio use the command install.packages(“name”). Follow the following steps to get the packages installed on your system.

install.packages('networkD3')

Similar Reads

Simple Network

A simple network is a basic form of a Forced-directed network, we can use Force network to create a Simple network by providing appropriate data and customization options. For a simple form of a Force-directed network, we can use a simple network (). It works based on a “node-link” diagram and is connected by edges. It provides us with amazing animation with an intuitive way of observing data and also allows us to tweak the networks with cursors....

Force Network

A Force network is also known as node-link diagram though it is useful for visualizing networks with nodes and edges which are connected by forces. Force network provides wonderful animations for understanding the network’s data element and also allows us to tweak the data in a repulsive and attractive manner....

Sankey Network

A Sankey network is a type of visualization that shows the flows and movement of objects between nodes of different categories or groups. Sankey is useful for understanding the transition, distribution, or transformation of quantities or values within a system. It also consists of nodes and links. It is a complex form of network in the networkD3 package because of the massive network components. The link in the Sankey network is of different sizes according to the data flow through the link. The width of the links represents the magnitude or volume of the flow....

Radial Network

A radial network also known as the is Reingold-Tilford Tree network, is a type of network visualization where nodes are arranged in a circular or radial layout. In a , radial network the root node is the center present at the centre of the network and the parent node present at is outside of the circular graph. Radial network visualization is particularly useful when we want to display hierarchical relationships between nodes, such as organizational structures, family trees, or classification hierarchies....

Dendro network

The Dendro network is a network visualization that uses a hierarchical type of visualization of data. It is particularly useful when visualizing `hierarchical clustering or tree structures. It contains the root node where the tree graph starts and the parent node where the tree graph ends. It can help for understanding complex information through network visualization....

Chord Network

A Chord network is also known as a circular network. It is a type of network visualization that represents relationships and connections between entities or categories. It is particularly useful for showing the interactions and associations between different groups or entities. In a chord network, entities or groups are represented as arcs on a circle, and the connections or relationships are displayed as chords connecting the arcs. The width of the chords can be used to represent the strength, magnitude, or frequency of the connections....