| graph_methods | R Documentation |
igraph functions to igraph_financial objectsThe following functions are implemented:
V to retrieve the vertexes (igraph::V);
vcount to count the vertexes (igraph::vcount);
gorder as an alias to vcount_fin (igraph::gorder);
E to retrieve the edges (igraph::E);
gsize to count the edges (igraph::gsize);
ecount as an alias to gsize_fin (igraph::ecount)
plot_igraph to plot graphs (igraph::plot.igraph))
V(x)
vcount(x)
gorder(x)
E(x, ...)
ecount(x, ...)
gsize(x, ...)
plot_igraph(x, ...)
x |
The |
... |
Other parameters passed to the corresponding |
Implementing most basic iterators from the package igraph for objects of class igraph_financial
The same result for both igraph and igraph_financial objects
V: A vertex sequence containing all vertices, in the order of their numeric vertex ids.
vcount and gorder: Number of vertices, numeric scalar.
E: An edge sequence of the graph
ecount and gsize: Number of edges, numeric scalar.
plot_igraph: Returns NULL, invisibly. Called to print the graph to any R device. (see method and igraph::plot.igraph)
Telarico, Fabio Ashtar
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.