data_overview {manynet}R Documentation

Obtain overview of available network data

Description

This function makes it easy to get an overview of available data:

Usage

table_data(..., pkg = c("manynet", "migraph"))

Arguments

...

Network marks, e.g. directed, twomode, or signed, that are used to filter the results.

pkg

String, name of the package.

Examples

table_data()
# to obtain list of all e.g. directed networks:
table_data(pkg = "manynet", directed)
# to obtain overview of unique datasets:
table_data() %>% 
  dplyr::distinct(directed, weighted, twomode, signed, 
                 .keep_all = TRUE)

[Package manynet version 1.5.1 Index]