move_right: Move to sibling in adjacency matrix

View source: R/MullerPlot.R

move_rightR Documentation

Move to sibling in adjacency matrix

Description

Returns the next Identity value among the sorted set of siblings. When there is no such sibling, returns the input Identity.

Usage

move_right(edges, identity)

Arguments

edges

Dataframe comprising an adjacency matrix, with column names "Parent" and "Identity"

identity

number or character string specifying whose sibling is to be found

Value

The sibling's Identity.

Author(s)

Rob Noble, robjohnnoble@gmail.com

See Also

move_up move_down

Examples

edges1 <- data.frame(Parent = c(1,1,1,3,3), Identity = 2:6)
move_right(edges1, 3)


ggmuller documentation built on Feb. 16, 2023, 7:42 p.m.