data_overview: Obtain overview of available network data

data_overviewR Documentation

Obtain overview of available network data

Description

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

  • table_data() returns a tibble with details of the network datasets included in the packages.

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)

manynet documentation built on June 23, 2025, 9:07 a.m.