Learn R Programming

signnet (version 1.0.5)

complex_walks: Count Walks in complex signed network

Description

Count Walks in complex signed network

Usage

complex_walks(g, attr, k)

Value

igraph object

Arguments

g

igraph object.

attr

edge attribute that encodes positive ("P"), negative ("N") and ambivalent ("A") ties.

k

integer. length of walks

Author

David Schoch

Examples

Run this code
g <- sample_islands_signed(2, 10, 1, 10)
g <- as_complex_edges(g, attr = "type")
complex_walks(g, attr = "type", k = 3)

Run the code above in your browser using DataLab