remove.edge: An Edge Removal

Description Usage Arguments Value See Also Examples

Description

Remove a directed edge between two vertices.

Usage

1
remove.edge(nw, a, b)

Arguments

nw

mhnet network

a

First vertex (an arrow pointing from)

b

Second vertex (an arrow pointing from)

Value

mhnet network

See Also

add.edge, reverse.edge

Examples

1
2
3
4
nw <- empty.network(LETTERS[1:4])
nw <- add.edge(nw, "A", "D")
nw <- remove.edge(nw, "A", "D")
try(remove.edge(nw, "A", "C"))

simecek/mhnet documentation built on May 29, 2019, 10:01 p.m.