network_functions: Network Manipulation Functions

Description Usage Arguments Value Examples

Description

These functions take a Net object, manipulate the network in some way, and return a list of modified Net objects.

Usage

1
2
3
4
5
6
7
node_jackknife(Net)

network_jackknife(Net, network.variable)

absolute_threshold(Net, thresholds)

relative_threshold(Net, percentiles)

Arguments

Net

Network to jackknife

network.variable

Character name of node variable containing network labels

thresholds

Vector of thresholds to use

percentiles

Vector of densities to threshold at

Value

A list of Net objects

Examples

1
2
3
4
data(GroupA)
GroupA1_Net = as_Net(GroupA[[1]], "1", list(community = c(rep(1, 10), rep(2,10))))
node_jackknife(GroupA1_Net)
network_jackknife(GroupA1_Net, "community")

netjack documentation built on July 8, 2019, 1:02 a.m.