mark_tie_select {manynet}R Documentation

Marking ties for selection based on measures

Description

These functions return logical vectors the length of the ties in a network:

Usage

tie_is_random(.data, size = 1)

tie_is_max(tie_measure)

tie_is_min(tie_measure)

Arguments

.data

An object of a manynet-consistent class:

  • matrix (adjacency or incidence) from {base} R

  • edgelist, a data frame from {base} R or tibble from {tibble}

  • igraph, from the {igraph} package

  • network, from the {network} package

  • tbl_graph, from the {tidygraph} package

size

The number of nodes to select (as TRUE).

tie_measure

An object created by a tie_ measure.

See Also

Other marks: mark_diff, mark_nodes, mark_select, mark_ties

Examples

# tie_is_max(migraph::tie_betweenness(ison_brandes))
#tie_is_min(migraph::tie_betweenness(ison_brandes))

[Package manynet version 0.4.4 Index]