Batch drawing multiple network diagrams

plot_multi_nets(graph_ls, nrow = NULL, ncol = NULL, multi_params_list = NULL)

Arguments

graph_ls

a list containing igraph objects

nrow

nrow

ncol

ncol

multi_params_list

a list of parameters for each network

Value

No value

Examples

plot_multi_nets(list(co_net, co_net2),
  multi_params_list = list(
    list(vertex.color = "skyblue"),
    list(vertex.color = "green3")
  )
)