Skip to contents

This function does nothing. It is designed to be used with @inheritParams.

Usage

common_params(
  graph,
  vids,
  vid,
  from,
  to,
  eids,
  eid,
  mode,
  weights,
  directed,
  loops,
  multiple
)

Arguments

graph

igraph_ptr object.

vids

Vertices of interest.

vid

Vertices of interest.

from

Vertices of interest.

to

Vertices of interest.

eids

Edges of interest.

eid

Edges of interest.

mode

Edge type to count; {1: OUT, 2: IN, 3: ALL}.

weights

Numeric edge weights; TRUE to use Eattr(graph, "weight").

directed

Boolean, whether to consider directed paths. Ignored for undirected graphs.

loops

How to treat loop edges; {0: NO_LOOPS, 1: LOOPS, 2: LOOPS_ONCE}

multiple

Boolean, whether to keep multiple (parallel) edges.