EVOLUTION-MANAGER
Edit File: print.igraph.es.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Print an edge sequence to the screen</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for print.igraph.es {igraph}"><tr><td>print.igraph.es {igraph}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Print an edge sequence to the screen</h2> <h3>Description</h3> <p>For long edge sequences, the printing is truncated to fit to the screen. Use <code>print</code> explicitly and the codefull argument to see the full sequence. </p> <h3>Usage</h3> <pre> ## S3 method for class 'igraph.es' print(x, full = igraph_opt("print.full"), ...) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>x</code></td> <td> <p>An edge sequence.</p> </td></tr> <tr valign="top"><td><code>full</code></td> <td> <p>Whether to show the full sequence, or truncate the output to the screen size.</p> </td></tr> <tr valign="top"><td><code>...</code></td> <td> <p>Currently ignored.</p> </td></tr> </table> <h3>Details</h3> <p>Edge sequences created with the double bracket operator are printed differently, together with all attributes of the edges in the sequence, as a table. </p> <h3>Value</h3> <p>The edge sequence, invisibly. </p> <h3>See Also</h3> <p>Other vertex and edge sequences: <code><a href="E.html">E</a>()</code>, <code><a href="V.html">V</a>()</code>, <code><a href="igraph-es-attributes.html">igraph-es-attributes</a></code>, <code><a href="igraph-es-indexing2.html">igraph-es-indexing2</a></code>, <code><a href="igraph-es-indexing.html">igraph-es-indexing</a></code>, <code><a href="igraph-vs-attributes.html">igraph-vs-attributes</a></code>, <code><a href="igraph-vs-indexing2.html">igraph-vs-indexing2</a></code>, <code><a href="igraph-vs-indexing.html">igraph-vs-indexing</a></code>, <code><a href="print.igraph.vs.html">print.igraph.vs</a>()</code> </p> <h3>Examples</h3> <pre> # Unnamed graphs g <- make_ring(10) E(g) # Named graphs g2 <- make_ring(10) %>% set_vertex_attr("name", value = LETTERS[1:10]) E(g2) # All edges in a long sequence g3 <- make_ring(200) E(g3) E(g3) %>% print(full = TRUE) # Metadata g4 <- make_ring(10) %>% set_vertex_attr("name", value = LETTERS[1:10]) %>% set_edge_attr("weight", value = 1:10) %>% set_edge_attr("color", value = "green") E(g4) E(g4)[[]] E(g4)[[1:5]] </pre> <hr /><div style="text-align: center;">[Package <em>igraph</em> version 1.3.5 <a href="00Index.html">Index</a>]</div> </body></html>