EVOLUTION-MANAGER
Edit File: print.igraph.vs.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: Show a vertex sequence on 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.vs {igraph}"><tr><td>print.igraph.vs {igraph}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Show a vertex sequence on the screen</h2> <h3>Description</h3> <p>For long vertex sequences, the printing is truncated to fit to the screen. Use <code>print</code> explicitly and the <code>full</code> argument to see the full sequence. </p> <h3>Usage</h3> <pre> ## S3 method for class 'igraph.vs' 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>A vertex 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>These arguments are currently ignored.</p> </td></tr> </table> <h3>Details</h3> <p>Vertex sequence created with the double bracket operator are printed differently, together with all attributes of the vertices in the sequence, as a table. </p> <h3>Value</h3> <p>The vertex 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.es.html">print.igraph.es</a>()</code> </p> <h3>Examples</h3> <pre> # Unnamed graphs g <- make_ring(10) V(g) # Named graphs g2 <- make_ring(10) %>% set_vertex_attr("name", value = LETTERS[1:10]) V(g2) # All vertices in the sequence g3 <- make_ring(1000) V(g3) print(V(g3), full = TRUE) # Metadata g4 <- make_ring(10) %>% set_vertex_attr("name", value = LETTERS[1:10]) %>% set_vertex_attr("color", value = "red") V(g4)[[]] V(g4)[[2:5, 7:8]] </pre> <hr /><div style="text-align: center;">[Package <em>igraph</em> version 1.3.5 <a href="00Index.html">Index</a>]</div> </body></html>