data_overview {manynet} | R 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 = "manynet")
Arguments
pkg |
String, name of the package. |
Examples
table_data()
# to obtain list of all e.g. two-mode networks:
table_data() %>%
dplyr::filter(directed)
# to obtain overview of unique datasets:
table_data() %>%
dplyr::distinct(directed, weighted, twomode, signed,
.keep_all = TRUE)
[Package manynet version 1.0.2 Index]