intergraph-package | R Documentation |
This package contains methods for coercion between various classes used to represent network data in R.
Functions implemented in this package allow to coerce (i.e. convert) network data between classes provided by other R packages. Currently supported classes are: "network" from package network, "igraph" from package igraph.
The main functions are:
asNetwork
and its methods to create objects of class
"network".
asIgraph
and its methods to create objects of class
"igraph".
See their help pages for more information and examples.
As all the supported packages are written using S3 methods, so are the methods in this package.
If you find this package useful in your work please cite it. Type
citation(package="intergraph")
for the information how to do that.
Written and maintained by Michal Bojanowski m.bojanowski@icm.edu.pl.
Useful links:
# example of converting objects between classes 'network' and 'igraph'
# needs packages igraph and network attached
if( require(network) & require(igraph) )
{
### convert 'network' -> 'igraph'
# example network as object of class "network"
summary(exNetwork)
# convert to class "igraph"
g <- asIgraph(exNetwork)
# check if 'exNetwork' and 'g' are the same
# (dropping some aux attributes)
all.equal( structure(as.matrix(exNetwork, "edgelist"), n=NULL, vnames=NULL),
igraph::as_edgelist(g) )
# compare results using 'netcompare'
netcompare(exNetwork, g)
### convert 'igraph' -> 'network'
# example network as object of class "igraph"
summary(exIgraph)
# convert to class "network"
gg <- asNetwork(exIgraph)
# check if they are the same
# (dropping some attributes)
all.equal( get.edgelist(exIgraph),
structure(as.matrix(gg, "edgelist"), n=NULL, vnames=NULL))
netcompare(exIgraph, gg)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.