Learn R Programming

MetaNet (version 0.2.5)

links_stat: Link summary of the network

Description

Link summary of the network

Usage

links_stat(
  go,
  group = "v_class",
  e_type = "all",
  topN = 10,
  colors = NULL,
  mode = 1,
  plot_param = list()
)

Value

plot

Arguments

go

igraph or metanet

group

summary which group of vertex attribution in names(vertex_attr(go))

e_type

"positive", "negative", "all"

topN

topN of group, default: 10

colors

colors

mode

1~2

plot_param

plot parameters

See Also

Other topological: extract_sample_net(), fit_power(), get_group_skeleton(), nc(), net_par(), rand_net_par(), rand_net(), smallworldness()

Examples

Run this code
if (requireNamespace("circlize")) {
  links_stat(co_net, topN = 10)
  module_detect(co_net) -> co_net_modu
  links_stat(co_net_modu, group = "module")
}
if (requireNamespace("corrplot")) {
  links_stat(co_net, topN = 10, mode = 2)
}

Run the code above in your browser using DataLab