igraph-es-indexing2 {igraph} | R Documentation |
The double bracket operator can be used on edge sequences, to print the meta-data (edge attributes) of the edges in the sequence.
## S3 method for class 'igraph.es' x[[...]]
x |
An edge sequence. |
... |
Additional arguments, passed to |
Technically, when used with edge sequences, the double bracket operator does exactly the same as the single bracket operator, but the resulting edge sequence is printed differently: all attributes of the edges in the sequence are printed as well.
See [.igraph.es
for more about indexing edge sequences.
Another edge sequence, with metadata printing turned on. See details below.
Other vertex and edge sequence operations: [.igraph.es
,
%–%
, %->%
,
%<-%
, igraph-es-indexing
;
[.igraph.vs
,
igraph-vs-indexing
;
[[.igraph.vs
,
igraph-vs-indexing2
;
c.igraph.es
; c.igraph.vs
;
difference.igraph.es
;
difference.igraph.vs
;
intersection.igraph.es
;
intersection.igraph.vs
;
rev.igraph.es
; rev.igraph.vs
;
union.igraph.es
;
union.igraph.vs
;
unique.igraph.es
;
unique.igraph.vs
Other vertex and edge sequences: $.igraph.es
,
$<-.igraph.es
, E<-
,
[<-.igraph.es
,
[[<-.igraph.es
,
igraph-es-attributes
,
igraph-es-attributes
,
igraph-es-attributes
,
igraph-es-attributes
,
igraph-es-attributes
;
$.igraph.vs
, $<-.igraph.vs
,
V<-
, [<-.igraph.vs
,
[[<-.igraph.vs
,
igraph-vs-attributes
,
igraph-vs-attributes
,
igraph-vs-attributes
,
igraph-vs-attributes
,
igraph-vs-attributes
; E
;
V
; [.igraph.es
,
%–%
, %->%
,
%<-%
, igraph-es-indexing
;
[.igraph.vs
,
igraph-vs-indexing
;
[[.igraph.vs
,
igraph-vs-indexing2
;
print.igraph.es
;
print.igraph.vs
g <- make_(ring(10), with_vertex_(name = LETTERS[1:10]), with_edge_(weight = 1:10, color = "green")) E(g) E(g)[[]] E(g)[[inc('A')]]