data_overview function

Obtain overview of available network data

Obtain overview of available network data

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.
table_data(pkg = c("manynet", "migraph"), ...)

Arguments

  • pkg: String, name of the package.
  • ...: Network marks, e.g. directed, twomode, or signed, that are used to filter the results.

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)
  • Maintainer: James Hollway
  • License: MIT + file LICENSE
  • Last published: 2024-11-05