Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

is_edge_loop

Is the edge a loop edge?


Description

Determines whether an edge definition is a loop edge.

Usage

is_edge_loop(graph, edge)

Arguments

graph

A graph object of class dgr_graph.

edge

A numeric edge ID value.

Value

A logical value.

Examples

# Create a graph that has multiple
# loop edges
graph <-
  create_graph() %>%
  add_path(n = 4) %>%
  add_edge(
    from = 1,
    to = 1) %>%
  add_edge(
    from = 3,
    to = 3)

# Get the graph's internal
# edge data frame
graph %>% get_edge_df()

# Determine if edge `4` is
# a loop edge
graph %>% is_edge_loop(edge = 4)

# Determine if edge `2` is
# a loop edge
graph %>% is_edge_loop(edge = 2)

DiagrammeR

Graph/Network Visualization

v1.0.6.1
MIT + file LICENSE
Authors
Richard Iannone [aut, cre] (<https://orcid.org/0000-0003-3925-190X>)
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.