plot.linkcomm: The 'linkcomm' Plotting Function

Description Usage Arguments Details Value Author(s) References See Also Examples

View source: R/linkcomm_plotting.R

Description

This function plots various different linkcomm graphs.

Usage

1
2
## S3 method for class 'linkcomm'
plot(x, type = "", ...)

Arguments

x

An object of class linkcomm.

type

A character string specifying the type of plot. Can be one of "summary", "members", "graph", "commsumm", and "dend". See Details below.

...

Additional arguments to be passed to plot.

Details

"summary" plots the dendrogram and partition density plot side-by-side;
"members" plots a community membership matrix;
"graph" plots a graph layout of the network with coloured link communities;
"commsumm" plots a bar graph or pie chart summarising community modularity or connectedness for each community;
"dend" plots a dendrogram with coloured link communities.

See the individual plotting functions for details of arguments that can be passed to plot.linkcomm: plotLinkCommSumm, plotLinkCommMembers, plotLinkCommGraph, plotLinkCommSummComm, and plotLinkCommDend.

Value

Plots to the current device.

Author(s)

Alex T. Kalinka alex.t.kalinka@gmail.com

References

Kalinka, A.T. and Tomancak, P. (2011). linkcomm: an R package for the generation, visualization, and analysis of link communities in networks of arbitrary size and type. Bioinformatics 27, 2011-2012.

See Also

plotLinkCommSumm, plotLinkCommMembers, plotLinkCommGraph, plotLinkCommSummComm, plotLinkCommDend

Examples

1
2
3
4
5
6
## Generate graph and extract link communities.
g <- swiss[,3:4]
lc <- getLinkCommunities(g)

## Plot a graph of link communities.
plot(lc, type = "graph")

alextkalinka/linkcomm documentation built on Feb. 11, 2021, 4:53 a.m.