Short `intergraph` tutorial

library(intergraph)
library(knitr)

set.seed(123)

"Intergraph" is an R package with coercion routines for netowrk data objects. For more information, see

This is a short tutorial showing how to use functions in package "intergraph" using some example network data contained in the package.

Loading example data

To show the data, first load the packages.

library(intergraph)
library(network)
library(igraph)

Now, these are the summaries of the "igraph" objects:

summary(exIgraph)
summary(exIgraph2)

These are the summaries of the "network" objects:

exNetwork
exNetwork2

More information is available in the Appendix.

Functions asNetwork and asIgraph

Conversion of network objects between classes "network" and "igraph" can be performed using functions asNetwork and asIgraph.

network => igraph

Converting "network" objects to "igraph" is done by calling function asIgraph on a "network" object:

# check class of 'exNetwork'
class(exNetwork)
# convert to 'igraph'
g <- asIgraph(exNetwork)
# check class of the result
class(g)

Check if edgelists of the objects are identical

el.g <- get.edgelist(g)
el.n <- as.matrix(exNetwork, "edgelist")
identical( as.numeric(el.g), as.numeric(el.n))

igraph => network

Converting "igraph" objects to "network" is done by calling function asNetwork on an "igraph" object:

net <- asNetwork(exIgraph)

Note the warning because of a "non-standard" network attribute layout, which is a function. Printing "network" objects does not handle non-standard attributes very well. However, all the data and attributes are copied correctly.

Check if edgelists of the objects are identical

el.g2 <- get.edgelist(exIgraph)
el.n2 <- as.matrix(net, "edgelist")
identical( as.numeric(el.g2), as.numeric(el.n2))

Handling attributes

Objects of class "igraph" and "network", apart from storing actual network data (vertexes and edges), allow for adding attributes of vertexes, edges, and attributes of the network as a whole (called "network attributes" or "graph attributes" in the nomenclatures of packages "network" and "igraph" respectively).

Vertex and edge attributes are used by "igraph" and "network" in a largely similar fashion. However, network-level attributes are used differently. Objects of class "network" use network-level attributes to store various metadata, e.g., network size, whether the network is directed, is bipartite, etc. In "igraph" this information is stored separately.

The above difference affects the way the attributes are copied when we convert "network" and "igraph" objects into one another.

Both functions asNetwork and asIgraph have an additional argument attrmap that is used to specify how vertex, edge, and network attributes are copied. The attrmap argument requires a data frame. Rows of that data frame specify rules of copying/renaming different attributes. The data frame should have the following columns (all of class "character"):

The default rules are returned by a function attrmap(), these are:

attrmap()

For example, the last row specifies a rule that when an object of class "igraph" is converted to class "network", then a vertex attribute name in the "igraph" object will be copied to a vertex attribute called vertex.names in the resulting object of class "network.

If the column toattr contains an NA, that means that the corresponding attribute is not copied. For example, the first row specifies a rule that when an object of class "network" is converted to class "igraph", then a network attribute directed in the "network" object is not copied to the resulting object of class "igraph".

Users can customize the rules, or add new ones, by constructing similar data frames and supplying them through argument attrmap to functions asIgraph and asNetwork.

As an example let us set the option to always drop the na vertex attribute. First, we need to setup the rule by adding an extra row to the data frame returned by attrmap:

new_rule <- data.frame(type="vertex", fromcls="network", fromattr="na",
                       tocls="igraph", toattr=NA,
                       stringsAsFactors=FALSE)
# combine with the default rules
rules <- rbind( attrmap(), new_rule )
rules

Now we can use it with asIgraph:

(ig1 <- asIgraph(exNetwork))
(ig2 <- asIgraph(exNetwork, amap=rules))

# check if "na" was dropped
"na" %in% igraph::list.vertex.attributes(ig1)
"na" %in% igraph::list.vertex.attributes(ig2)

Network objects to/from data frames

Function asDF can be used to convert network object (of class "igraph" or "network") to a list of two data frames:

l <- asDF(exIgraph)
str(l)

The resulting list has two components edges and vertexes. The edges component is essentially an edge list containing ego and alter ids in the first two columns. The remaining columns store edge attributes (if any). For our example data it is

l$edges

The vertexes component contains data on vertexes with vertex id (the same that is used in the first two column of edges) is stored in the first two columns. The remaining columns store vertex attributes (if any). For our example data it is:

l$vertexes

Functions asNetwork and asIgraph can also be used to create network objects from data frames such as those above. The first argument should be an edge list data frame. Optional argument vertices expectes data frames with vertex data (just like l$vertexes). Additionally we need to specify whether the edges should be interpreted as directed or not through the argument directed.

For example, to create an object of class "network" from the dataframes created above from object exIgraph we can:

z <- asNetwork(l$edges, directed=TRUE, l$vertexes)
z

This is actually what basically happens when we call asNetwork(exIgraph)


Appendix

Example networks

Package intergraph contains four example networks:

All four datasets contain:

We will use them in the examples below.

Networks are shown below using the following code:

layout(matrix(1:4, 2, 2, byrow=TRUE))
op <- par(mar=c(1,1,2,1))
# compute layout
coords <- layout.fruchterman.reingold(exIgraph)
plot(exIgraph, main="exIgraph", layout=coords)
plot(exIgraph2, main="exIgraph2", layout=coords)
plot(exNetwork, main="exNetwork", displaylabels=TRUE, coord=coords)
plot(exNetwork2, main="exNetwork2", displaylabels=TRUE, coord=coords)
par(op)

Session information

sessionInfo()


Try the intergraph package in your browser

Any scripts or data that you put into this service are public.

intergraph documentation built on Aug. 21, 2023, 1:06 a.m.