Link summary of the network

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

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

Value

plot

See also

Examples

if (requireNamespace("circlize")) {
  links_stat(co_net, topN = 10)
  module_detect(co_net) -> co_net_modu
  links_stat(co_net_modu, group = "module")
}
#> Loading required namespace: circlize
if (requireNamespace("corrplot")) {
  links_stat(co_net, topN = 10, mode = 2)
}
#> Loading required namespace: corrplot