This workshop will explore the key features of the open-source R packages that statnet suite provides for working with dynamic (longitudinal) network data:
networkDynamic (Butts, et al) extends the network package to provide data structures for edge, vertex, and attribute dynamicsndtv (Network Dynamic Temporal Visualization) provides tools for visualizing and animating changing network structuretsna provides basic temporal social network analysis statistics, in part by leveraging algorithms provided by the ergm, relevent and sna packages.networkDynamicData includes several dynamic network data sets shared by multiple authors.There is much more material in the workshop than we will be able to cover in three hours, so this document is also intended to serve as a reference as well.
This work was supported by grant R01HD68395 from the National Institute of Health.
network data structures preferred but not necessary. (A tutorial providing “An Introduction to Network Analysis with R and statnet”" is located here: https://statnet.org/trac/wiki/Resources)Lets get started with a realistic example. We can render a simple network animation in the R plot window (no need to follow along in this part)
First we load the package and its dependencies.
library(ndtv)
Now we need some dynamic network data to explore. The package includes an example network data set named short.stergm.sim which is the output of a toy STERGM model based on Padgett’s Florentine Family Business Ties dataset simulated using the tergm package. (Using the tergm package to simulate the model is illustrated in a later example.)
data(short.stergm.sim)
If we want to get a quick visual summary of how the structure changes over time, we could render the network as an animation.
render.animation(short.stergm.sim)
And then play it back in the R plot window as many times as we want
ani.replay()
We can also present a similar animation as an interactive HTML5 animation in a web browser.
render.d3movie(short.stergm.sim)
This should bring up a browser window displaying the animation. In addition to playing and pausing the movie, it is possible to click on vertices and edges to show their ids, double-click to highlight neighbors, and zoom into the network at any point in time.
By changing the output slightly, we can embed directly in an Rmarkdown document or RStudio plot window
render.d3movie(short.stergm.sim,output.mode = 'htmlWidget')
slice parameters:
start:0
end:25
interval:1
aggregate.dur:1
rule:latest
An animation is not the only way to display a sequence of views of the network. We could also use the filmstrip() function that will create a “small multiple” plot using frames of the animation to construct a static visual summary of the network changes.
filmstrip(short.stergm.sim,displaylabels=FALSE)
No coordinate information found in network, running compute.animation
If were to select some of the ‘small multiple’ frames from the movie and stack them up in layers of time, we will have an illustrative ‘timePrism’ projection of the network. This view introduces some clutter and distortion, but includes both some time and some relational information
compute.animation(short.stergm.sim)
slice parameters:
start:0
end:25
interval:1
aggregate.dur:1
rule:latest
timePrism(short.stergm.sim,at=c(1,10,20),
displaylabels=TRUE,planes = TRUE,
label.cex=0.5)
If we want to focus solely on the relative durations of events, we can view the dynamics as a timeline by plotting the active spells of edges and vertices.
timeline(short.stergm.sim)
In this view, only the activity state of the network elements are shown–the structure and network connectivity is not visible. The vertices in this network are always active so they trace out unbroken horizontal lines in the upper portion of the plot, while the edge toggles are drawn in the lower portion.
We are experimenting with a form of timeline or “phase plot”. In this view vertices are positioned vertically by their geodesic distance proximity. This means that changes in network structure deflect the vertices’ lines into new positions, attempting to keep closely-tied vertices as neighbors. The edges are not shown at all in this view.
proximity.timeline(short.stergm.sim,default.dist=6,
mode='sammon',labels.at=17,vertex.cex=4)
Notice how the bundles of vertex lines diverge after time 20, reflecting the split of the large component into two smaller components.
Of course we can always display the edge (or vertex) spells directly in a tabular form using the various utilities in the networkDynamic package.
head( as.data.frame(short.stergm.sim) )
onset terminus tail head onset.censored terminus.censored duration
1 0 1 3 5 FALSE FALSE 1
2 10 20 3 5 FALSE FALSE 10
3 0 25 3 6 FALSE FALSE 25
4 0 1 3 9 FALSE FALSE 1
5 2 25 3 9 FALSE FALSE 23
6 0 4 3 11 FALSE FALSE 4
edge.id
1 1
2 1
3 2
4 3
5 3
6 4
Question: What are some strengths and weakness of the various views?
Exercise: Load the saved version of short.stergm.sim. Are there any edges that are present for the entire time period from 0 until 25?
data(short.stergm.sim)
spls<-as.data.frame(short.stergm.sim)
spls[spls$duration==25,]
onset terminus tail head onset.censored terminus.censored duration
3 0 25 3 6 FALSE FALSE 25
edge.id
3 2
Load up the tsna (Temporal Social Network Analysis) library
library(tsna)
How many edges form at each time step for the short.stergm.sim? Conveniently, the values are returned as a time series, plot already knows how to handle them.
tEdgeFormation(short.stergm.sim)
Time Series:
Start = 0
End = 25
Frequency = 1
[1] 15 2 1 2 2 2 2 0 0 1 1 1 0 4 0 0 1 2 0 2 0 3 1
[24] 4 1 0
plot( tEdgeFormation(short.stergm.sim) )
The tsna package provides wrapper functions that make it easy to compute a time series using statistics from the sna package or ergm terms. For example, we can use the gtrans function to compute transitivity in the network.
plot( tSnaStats(short.stergm.sim,'gtrans') )
We can quickly compute the earliest times a journey from vertex 13 can reach the rest of the network traveling forward along time-respecting paths in the network. And then plot this path as an overlay on the aggregate network.
path<-tPath(short.stergm.sim,v = 13,
graph.step.time=1)
plotPaths(short.stergm.sim,
path,
label.cex=0.5)
Now that we’ve had a quick tour of some of what we will cover in the tutorial, lets get things set up and explain what is going on.
The ndtv (Bender-deMoll 2013) package relies on many other packages to do much of the heavy lifting, especially animation (Xie Y 2012) and networkDynamic (Butts et. al. 2012) which provides its input objects. Web animations can be created and viewed on computers with modern web browsers without additional components using the built-in ndtv-d3 l. However, ndtv does require some non-R external dependencies (FFmpeg or avconv) to save movies as video files, and Java to be able to use some of the better quality layout algorithms. These are discussed in a later section.
The core use-case for development is examining the output of statistical network models (such as those produced by the tergm (Krivitsky and Handcock 2015) package in statnet (Handcock et. al. 2003b) and simulations of disease spread across networks. The design philosophy is that it should be easy to do basic things, but lots of ability to customize.
R can automatically install the packages ndtv depends on when ndtv is installed. So open up your R console, and run the following command:
install.packages('ndtv',repos='http://cran.us.r-project.org',
dependencies=TRUE)
library(ndtv) # also loads animation and networkDynamic
We will also use the tsna package for temporal SNA, so let’s install and load that now as well. It will bring along the sna and ergm packages
install.packages('tsna',repos='http://cran.us.r-project.org',
dependencies=TRUE)
library(tsna)
Lets take quick tour of a networkDynamic object and work through some example in more detail to explain what is going on. Please follow along by running these commands in your R terminal.
We are going to build a simple networkDynamic object “by hand” and then peek at its internal structure and visualize its dynamics. Note that the networkDynamic() command provides utilities for constructing dynamic networks from real data in various data formats, see some the later examples.
First, we will create a static network with 10 vertices
wheel <- network.initialize(10)
class(wheel)
[1] "network"
Next we add some edges with activity spells. The edges’ connections are determined by the vector of tail and head vertex ids, and the start and ending time for each edge is specified by the onset and terminus vectors.
add.edges.active(wheel,tail=1:9,head=c(2:9,1),onset=1:9, terminus=11)
add.edges.active(wheel,tail=10,head=c(1:9),onset=10, terminus=12)
Adding active edges to a network has the side effect of converting it to a networkDynamic. Lets verify it.
class(wheel)
[1] "networkDynamic" "network"
print(wheel)
NetworkDynamic properties:
distinct change times: 12
maximal time range: 1 until 12
Network attributes:
vertices = 10
directed = TRUE
hyper = FALSE
loops = FALSE
multiple = FALSE
bipartite = FALSE
total edges= 18
missing edges= 0
non-missing edges= 18
Vertex attribute names:
vertex.names
Edge attribute names:
active
Notice that the object now has a class of both networkDynamic and network. All networkDynamic objects are still network objects, they just include additional special attributes to store time information. The print command for networkDynamic objects includes some additional info about the time range of the network and then the normal output from print.network.
Once again, we can peek at the edge dynamics by transforming a view of the network into a data.frame.
as.data.frame(wheel)
onset terminus tail head onset.censored terminus.censored duration
1 1 11 1 2 FALSE FALSE 10
2 2 11 2 3 FALSE FALSE 9
3 3 11 3 4 FALSE FALSE 8
4 4 11 4 5 FALSE FALSE 7
5 5 11 5 6 FALSE FALSE 6
6 6 11 6 7 FALSE FALSE 5
7 7 11 7 8 FALSE FALSE 4
8 8 11 8 9 FALSE FALSE 3
9 9 11 9 1 FALSE FALSE 2
10 10 12 10 1 FALSE FALSE 2
11 10 12 10 2 FALSE FALSE 2
12 10 12 10 3 FALSE FALSE 2
13 10 12 10 4 FALSE FALSE 2
14 10 12 10 5 FALSE FALSE 2
15 10 12 10 6 FALSE FALSE 2
16 10 12 10 7 FALSE FALSE 2
17 10 12 10 8 FALSE FALSE 2
18 10 12 10 9 FALSE FALSE 2
edge.id
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8
9 9
10 10
11 11
12 12
13 13
14 14
15 15
16 16
17 17
18 18
When we look at the output data.frame, we can see that it did what we asked. For example, edge id 1 connects the “tail” vertex id 1 to “head” vertex id 2 and has a duration of 10, extending from the “onset” of time 1 until the “terminus” of time 11.
It is important to remember that dynamicNetwork objects are also static network objects. So all of the network functions will still work, they will just ignore the time dimension attached to edges and vertices. For example, if we just plot the network, we see all the edges that ever exist (and realize why the network is named “wheel”).
plot(wheel)
If we want to just see the edges active at a specific time point, we could first extract a snapshot view of the network at a single point in time and then plot it.
plot(network.extract(wheel,at=1))
But we can also extract a view of the network covering an interval of time.
plot(network.extract(wheel,onset=1,terminus=5))
The network.extract function is one of the many tools provided by the networkDynamic package for storing and manipulating the time information attached to networks without having to work directly with the low-level data structures. The command help(package='networkDynamic') will give a listing of the help pages for all of the functions.
Exercise: Use the help function to determine the difference between the network.extract() and network.collapse() functions
A potentially confusing point about the language we use when expanding from the static network object to a dynamic networkDynamic context is that “edge” now means something like “a container for all of the realizations of a tie between (usually a pair of) vertices”. An “edge-spell” refers to a specific period of time over which the edge is known to be active.
The edge-spells for each edge are stored in an attribute named activity as a two-column matrix of starting and ending times (which we refer to as “onset” and “terminus”). For many tasks, we would use higher-level methods like get.edgeIDs.active() but, we can access timing information directly using get.edge.activity.
Print the edge activity of edge ids 1 and 2
get.edge.activity(wheel)[1:2]
[[1]]
[,1] [,2]
[1,] 1 11
[[2]]
[,1] [,2]
[1,] 2 11
So the networkDynamic object is not a big list of matrices for each discrete time point, and it is not even a list of networks. It can comfortably capture networks as multiple waves, but it can also store continuous time networks where each tie has its own timestamp. The help page ?activity.attribute is a good place to learn more detail about how the networkDynamic package represents dynamics.
Since the static plot, doesn’t show us which edges are active when, lets annotate it by labeling edges with their onset and termination times so we can check that it constructed the network we told it to.
Make a list of labels for each edge, pasting the onset and terminus time together.
elabels<-lapply(get.edge.activity(wheel),
function(spl){
paste("(",spl[,1],"-",spl[,2],")",sep='')
})
Plot the network, labeling each edge using the list of times.
plot(wheel,displaylabels=TRUE,edge.label=elabels,
edge.label.col='blue')
Question: Why is this edge labeling function not general enough for some networks? (Hint: do edges always have a single onset and terminus time?)
Now lets render the network dynamics as a movie and play it back so that we can visually understand the sequence of edge changes.
render.animation(wheel) # compute and render
slice parameters:
start:1
end:12
interval:1
aggregate.dur:1
rule:latest
ani.replay()
Hopefully, when you play the movie you see a bunch of labeled nodes moving smoothly around in the R plot window, with edges slowly appearing to link them into a circle. Then a set of “spoke” edges appear to draw a vertex into the center, and finally the rest of the wheel disappears. An example of the animation rendered as a movie is located at http://statnet.org/movies/ndtv_vignette/wheel.mp4.
Later sections of this tutorial give more complete examples of importing real network data from various formats. For the moment, we can quickly through translating from one type of representation to another.
Excercise: If the three adjacency matrices below represent three time points of a network, what would the corresponding timed-edgelist representation be?
t0: t1: t2:
0 1 0 0 1 0 0 0 0
0 0 0 0 1 0 0 1 0
1 0 0 0 0 0 0 1 0
# create a network object from each matrix
t0<-as.network(matrix(c(0,1,0,
0,0,0,
1,0,0),ncol=3,byrow=TRUE))
t1<-as.network(matrix(c(0,1,0,
0,1,0,
0,0,0),ncol=3,byrow=TRUE))
t2<-as.network(matrix(c(0,0,0,
0,1,0,
0,1,0),ncol=3,byrow=TRUE))
# convert a list of networks into networkDynamic object
tnet<-networkDynamic(network.list=list(t0,t1,t2))
Neither start or onsets specified, assuming start=0
Onsets and termini not specified, assuming each network in network.list should have a discrete spell of length 1
Argument base.net not specified, using first element of network.list instead
Created net.obs.period to describe network
Network observation period info:
Number of observation spells: 1
Maximal time range observed: 0 until 3
Temporal mode: discrete
Time unit: step
Suggested time increment: 1
# print the networkDynamic object as a timed edgelist
as.data.frame(tnet)[,1:4]
onset terminus tail head
1 0 1 3 1
2 0 2 1 2
3 2 3 3 2
Excercise: Create a networkDynamic object from the timed edgelist below. Assume columns are onset, terminus, tail, head.
0 1 3 1
0 2 1 2
2 3 3 2
tel<-matrix(c(0,1,3,1,
0,2,1,2,
2,3,3,2),ncol=4,byrow=TRUE)
tnet<-networkDynamic(edge.spells=tel)
Initializing base.net of size 3 imputed from maximum vertex id in edge records
Created net.obs.period to describe network
Network observation period info:
Number of observation spells: 1
Maximal time range observed: 0 until 3
Temporal mode: continuous
Time unit: unknown
Suggested time increment: NA
The networkDynamic package provides many utilities for querying, constructing, and manipulating dynamic network data. Since we won’t have time to delve into them all here, I’ll just point out some of the help topics for features that may be easy to overlook, and suggest referring to the help index and browseVignette(package='networkDynamic').
?networkDynamic Convert various forms of network timing information (including toggles and matrices) into networkDynamic objects?adjust.activity Adjust and transform the activity ranges in all of the spells of a networkDynamic object.?persistent.ids Create and query ‘persistent ids’ of networks that will remain constant as network size changes due to extraction.?reconcile.activity Clean up messy input data by modifying the activity spells of vertices to match incident edges or the other way around.?timeProjectedNetwork Construct a time-projected (“multi-slice”) network representation by binning a longitudinal network and linking time points with “identity arcs”.As we saw in the wheel example, creating the animations is simple right? Hopefully most of the complexity was hidden under the hood, but it is still useful to understand what is going on. At its most basic, rendering a movie consists of four key steps:
When we called render.animation() we asked the package to create an animation for wheel but we didn’t include any arguments indicating what should be rendered or how, so it had to make some educated guesses or use default values. For example, it assumed that the entire time range of the network should be rendered and that we should use the Kamada-Kawai layout to position the vertices.
The process of positioning the vertices was managed by the compute.animation() function which stepped through the wheel network and called a layout function to compute vertex coordinates for each time step.
Next, render.animation() looped through the network and used plot.network() to render appropriate slice network for each time step. It calls the animation package function ani.record() to cache the frames of the animation. Finally, ani.replay() quickly redrew the sequence of cached images in the plot window as an animation.
The render.d3movie() works along the same lines, but in step three the ‘render’ it stores at each step is a description of the time slice in a web data language (JSON), and in step four it feeds the data into an web app (the ndtv-d3 player) which it then displays.
For more precise control of the processes, we can call each of the steps in sequence and explicitly set the parameters we want for the rendering and layout algorithms. First we will define a slice.par, which is a list of named parameters to specify the time range that we want to compute and render.
slice.par=list(start=1, end=12, interval=1, aggregate.dur=1,
rule='latest')
Then we ask it to compute the coordinates for the animation, passing in the slice.par list. The animation.mode argument specifies which algorithm to use.
compute.animation(wheel,animation.mode='kamadakawai',slice.par=slice.par)
Calculating layout for network slice from time 1 to 2
Calculating layout for network slice from time 2 to 3
Calculating layout for network slice from time 3 to 4
Calculating layout for network slice from time 4 to 5
Calculating layout for network slice from time 5 to 6
Calculating layout for network slice from time 6 to 7
Calculating layout for network slice from time 7 to 8
Calculating layout for network slice from time 8 to 9
Calculating layout for network slice from time 9 to 10
Calculating layout for network slice from time 10 to 11
Calculating layout for network slice from time 11 to 12
Calculating layout for network slice from time 12 to 13
The x and y coordinates for plotting each time point are now stored in the network.
list.vertex.attributes(wheel)
[1] "animation.x.active" "animation.y.active" "na"
[4] "vertex.names"
# peek at x coords at time 4
get.vertex.attribute.active(wheel,'animation.x',at=4)
[1] -2.0123640 -1.5365246 -0.9740067 -0.1573550 0.6856109 2.0123640
[7] 0.1129509 -1.2157221 1.9572396 1.3559764
We can see that in addition to the standard vertex attributes of na and vertex.names, the network now has two dynamic “TEA” attributes for each vertex to describe its position over time. The slice.par argument is also cached as a network attribute so that later on render.animation() will know what range to render.
Since the coordinates are stored in the network, we can collapse the dynamics at any time point, extract the coordinates, and plot it:
wheelAt8<-network.collapse(wheel,at=8)
coordsAt8<-cbind(wheelAt8%v%'animation.x',wheelAt8%v%'animation.y')
plot(wheelAt8,coord=coordsAt8)
This is essentially what render.animation() does internally. The standard network plotting arguments are accepted by render.animation (via ...) and will be passed to plot.network():
render.animation(wheel,vertex.col='blue',edge.col='gray',
main='A network animation')
render.animation() also plots a number of in-between frames for each slice to smoothly transition the vertex positions between successive points. We can adjust how many “tweening” interpolation frames will be rendered which indirectly impacts the perceived speed of the movie (more tweening means a slower and smoother movie). For no animation smoothing at all, set tween.frames=1.
render.animation(wheel,render.par=list(tween.frames=1),
vertex.col='blue',edge.col='gray')
ani.replay()
Or bump it up to 30 for a slow-motion replay:
render.animation(wheel,render.par=list(tween.frames=30),
vertex.col='blue',edge.col='gray')
ani.replay()
Note that the render.d3movie command doesn’t have a tween.frames argument, because it interpolates the positions in the app. It has an animationDuration parameter that can be passed provided and an ‘animation speed’ control in the app which the use can adjust using the menu on the upper left.
If you are like me, you probably forget what the various parameters are and what they do. You can use ?compute.animation or ?render.animation to display the appropriate help files. and ?plot.network to show the list of plotting control arguments.
Question: Why is all this necessary? Why not just call plot.network over and over at each time point?
First some background about graph layouts. Producing layouts of dynamic networks is generally a computationally difficult problem. And the definition of what makes a layout “good” is often ambiguous or very specific to the domain of the data being visualized. The ndtv package aims for the following sometimes conflicting animation goals:
Many otherwise excellent static layout algorithms often don’t meet the last two goals well, or they may require very specific parameter settings to improve the stability of their results for animation applications.
So far, in ndtv we are using variations of Multidimensional Scaling (MDS) layouts. MDS algorithms use various numerical optimization techniques to find a configuration of points (the vertices) in a low dimensional space (the screen) where the distances between the points are as close as possible to the desired distances (the edges). This is somewhat analogous to the process of squashing a 3D world globe onto a 2D map: there are many useful ways of doing the projection, but each introduces some type of distortion. For networks, we are attempting to define a high-dimensional “social space” to project down to 2D.
The network.layout.animate.* layouts included in ndtv are adaptations or wrappers for existing static layout algorithms with some appropriate parameter presets. They all accept the coordinates of the previous layout as an argument so that they can try to construct a suitably smooth sequence of node positions. Using the previous coordinates allows us to “chain” the layouts together. This means that each visualization step can often avoid some computational work by using a previous solution as its starting point, and it is likely to find a solution that is spatially similar to the previous step.
The Fruchterman-Reingold algorithm has been one of the most popular layout algorithms for graph layouts (it is the default for plot.network). For larger networks it can be tuned to run much more quickly than most MDS algorithms. Unfortunately, its default optimization technique introduces a lot of randomness, so the “memory” of previous positions is usually erased each time the layout is run, producing very unstable layouts when used for animations. Various authors have had useful animation results by modifying FR to explicitly include references to vertices’ positions in previous time points. Hopefully we will be able to include such algorithms in future releases of ndtv.
The Kamada-Kawai network layout algorithm is often described as a “force-directed” or “spring embedded” simulation, but it is mathematically equivalent to some forms of MDS (Kamada-Kawai uses Newton-Raphson optimization instead of SMACOF stress-majorization). The function network.layout.animate.kamadakawai is essentially a wrapper for network.layout.kamadakawai. It computes a symmetric geodesic distance matrix from the input network using layout.distance (replacing infinite values with default.dist), and seeds the initial coordinates for each slice with the results of the previous slice in an attempt to find solutions that are as close as possible to the previous positions. It is not as fast as MDSJ, and the layouts it produces are not as smooth. Isolates often move around for no clear reason. But it has the advantage of being written entirely in R, so it doesn’t have the pesky external dependencies of MDSJ. For this reason it is the default layout algorithm.
compute.animation(short.stergm.sim,animation.mode='kamadakawai')
saveVideo(render.animation(short.stergm.sim,render.cache='none',
main='Kamada-Kawai layout'),
video.name='kamadakawai_layout.mp4')
MDSJ is a very efficient implementation of “SMACOF” stress-majorization Multidimensional Scaling. The network.layout.animate.MDSJ layout gives the best performance of any of the algorithms tested so far – despite the overhead of writing matrices out to a Java program and reading coordinates back in. It also produces very smooth layouts with less of the wobbling and flipping which can sometimes occur with Kamada-Kawai. Like Kamada-Kawai, it computes a symmetric geodesic distance matrix from the input network using layout.distance (replacing infinite values with default.dist), and seeds the initial coordinates for each slice with the results of the previous slice.
As noted earlier, the MDSJ library is released under Creative Commons License “by-nc-sa” 3.0. This means using the algorithm for commercial purposes would be a violation of the license. More information about the MDSJ library and its licensing can be found at http://www.inf.uni-konstanz.de/algo/software/mdsj/.
compute.animation(short.stergm.sim,animation.mode='MDSJ')
saveVideo(render.animation(short.stergm.sim,render.cache='none',
main='MDSJ layout'),
video.name='MDSJ_layout.mp4')
The Graphviz (Gansner and North 2000) external layout library includes a number of excellent algorithms for graph layout, including neato, an stress-optimization variant, and dot a hierarchical layout (for trees and Directed Acyclic Graph (DAG) networks). As Graphviz is not an R package, you must first install the the software on your computer following the instructions at ?install.graphviz before you can use the layouts. The layout uses the export.dot function to write out a temporary file which it then passes to Graphviz.
compute.animation(short.stergm.sim,animation.mode='Graphviz')
saveVideo(render.animation(short.stergm.sim,render.cache='none',
main='Graphviz-neato layout'),
video.name='gv_neato_layout.mp4')
compute.animation(short.stergm.sim,animation.mode='Graphviz',
layout.par=list(gv.engine='dot'))
The network.layout.animate.useAttribute layout is useful if you already know exactly where each vertex should be drawn at each time step (based on external data such as latitude and longitude), and you just want ndtv to render out the network. It just needs to know the names of the dynamic TEA attribute holding the x coordinate and the y coordinate for each time step.
The useAttribute layout also provides an easy way to pass in static coordinates in order to create an animation to show edge changes with static vertex positions. This can be handy for ‘flipbook’-style animations and geographic map overlays.
staticCoords<-network.layout.kamadakawai(short.stergm.sim,layout.par = list())
activate.vertex.attribute(short.stergm.sim,'x',staticCoords[,1],onset=-Inf,terminus=Inf)
activate.vertex.attribute(short.stergm.sim,'y',staticCoords[,2],onset=-Inf,terminus=Inf)
compute.animation(short.stergm.sim,animation.mode='useAttribute')
It is also possible to write your own layout function and easily plug it in by defining a function with a name like network.layout.animate.MyLayout. See the ndtv package vignette for a circular layout example browseVignette(package='ndtv').
Excercise: Compare the algorithms by watching the video outputs or watch this side-by-side composite version: http://statnet.org/movies/layout_compare.mp4. What differences are noticeable?
More detailed information about each of the layouts and their parameters can be found on the help pages, for example ?network.layout.animate.kamadakawai.
The tsna package currently provides four main classes of metrics
The first class of metrics requires some additional detail about how we think about dividing and aggregating time.
Most traditional “static” network metrics don’t really know what to do with dynamic networks. They need to be fed a set of relationships describing a single point in time in the network’s evolution which can then be used to compute graph metrics. A common way to apply static metrics to characterize a time-varying object is to sample it at regular intervals, taking a sequence static observations at multiple time points and using these to describe the changes over time.
In the case of networks, we often call this this sampling process “extracting” or “slicing” –cutting through the dynamics to obtain a static snapshot. For the network layouts we want a sequence of these snapshots to be converted into series of coordinates in Euclidean space suitable for plotting. For graph- or vertex-level SNA indicators we want a time series of numeric values. The processes of determining a set of slicing parameters appropriate for the network phenomena and data-set of interest requires careful thought and experimentation. As mentioned before, it is somewhat similar to the questions of selecting appropriate bin sizes for histograms.
In both the wheel and short.stergm.sim examples, we’ve been implicitly slicing up time in discrete way, extracting a static network at each unit time step.
We can plot the slice bins against the timeline of edges to visualize the “observations” of the network that the rendering process is using. When the horizontal line corresponding to an edge spell crosses the vertical gray bar corresponding to a bin, the edge would be included in that network. If this was a social network survey, each slice would correspond to one data collection panel of the network.
timeline(short.stergm.sim,slice.par=list(start=0,end=25,interval=1,
aggregate.dur=1,rule='latest'),
plot.vertex.spells=FALSE)
Looking at the first slice, which extends from time zero until (notice the right-open interval definition!) time 1, it appears that it should have 15 edges in it. Let’s check. We can either:
Extract the network as we have seen before and count edges…
network.edgecount(network.extract(short.stergm.sim,onset=0,terminus=1))
[1] 15
… or just count the active edges directly with a command.
network.edgecount.active(short.stergm.sim,onset=0,terminus=1)
[1] 15
If we want to do this for each slice, we can use the edges statistic from ergm
tErgmStats(short.stergm.sim,'edges',start = 0,end=25,time.interval=1)
Time Series:
Start = 0
End = 25
Frequency = 1
edges
[1,] 15
[2,] 15
[3,] 14
[4,] 14
[5,] 14
[6,] 14
[7,] 15
[8,] 15
[9,] 14
[10,] 12
[11,] 12
[12,] 12
[13,] 11
[14,] 15
[15,] 14
[16,] 13
[17,] 13
[18,] 13
[19,] 12
[20,] 14
[21,] 11
[22,] 12
[23,] 12
[24,] 15
[25,] 16
[26,] 0
Following the convention statnet uses for representing discrete-time simulation dynamics, the edge spells always have integer lengths and extend the full duration of the slice, so it wouldn’t actually matter if we used a shorter aggregate.dur. Each slice will still intersect with the same set of edges.
timeline(short.stergm.sim,slice.par=list(start=0,end=25,interval=1,
aggregate.dur=0,rule='latest'),
plot.vertex.spells=FALSE)
However, even for some data-sets that are collected as panels, the time units many not always be integers, or the slicing parameters might need to be adjusted to the natural time units. For example, if we use aggregate.dur to specify longer duration bins, some of them will intersect with more edges
tErgmStats(short.stergm.sim,'edges',start = 0,end=25,time.interval=2, aggregate.dur=2)
Time Series:
Start = 0
End = 24
Frequency = 0.5
edges
[1,] 17
[2,] 16
[3,] 16
[4,] 15
[5,] 15
[6,] 13
[7,] 15
[8,] 14
[9,] 15
[10,] 14
[11,] 14
[12,] 16
[13,] 16
And, as we will see later in the windsurfers example, there are situations where using longer aggregation durations can be helpful even for panel data.
Slicing up a dynamic network created from discrete panels may appear to be fairly straightforward but it is much less clear how to do it when working with continuous time or “streaming” relations where event are recorded as a single time point. How often should we slice? Should the slices measure the state of the network at a specific instant, or aggregate over a longer time period? The answer probably depends on what the important features to visualize are in your data-set. One of the strengths of these packages is that they make it possible to experiment with various aggregation options. In many situations we have even found it useful to let slices mostly overlap – increment each one by a small value to help show fluid changes on a moderate timescale instead of the rapid changes happening on a fine timescale (Bender-deMoll and McFarland 2006).
As an example, lets look at the McFarland (2001) data of streaming classroom interactions and see what happens when we chop it up in various ways.
data(McFarland_cls33_10_16_96)
Plot the time-aggregated network
plot(cls33_10_16_96)
First, we can animate at the fine time scale, viewing the first half-hour of class using instantaneous slices (aggregate.dur=0).
slice.par<-list(start=0,end=30,interval=2.5,
aggregate.dur=0,rule="latest")
compute.animation(cls33_10_16_96,
slice.par=slice.par,animation.mode='MDSJ',verbose = FALSE)
render.d3movie(cls33_10_16_96,output.mode = 'htmlWidget')
Notice that although the time-aggregated plot shows a fully-connected structure, in the animation most of the vertices are isolates, occasionally linked into brief pairs or stars by speech acts. You can go to http://statnet.org/movies/ndtv_vignette/cls33_10_16_96v1.mp4 to see a version of the movie output. Once again we can get an idea of what is going on by slicing up the network by using the timeline() function to plot the slice.par parameters against the vertex and edge spells. Although the vertices have spells spanning the entire time period, in this data set the edges are recorded as instantaneous “events” with no durations.
timeline(cls33_10_16_96,slice.par=slice.par)
The very thin slices (gray vertical lines) (aggregate.dur=0) are not intersecting many edge events (purple numbers) at once so the momentary degrees are mostly low. We can use the ergm’s meandeg term to compute the mean degree at each of the 50 time steps
plot(tErgmStats(cls33_10_16_96,'meandeg'),
main='Mean degree of cls33, 1 minute aggregation')
The first movie may give us a good picture of the sequence of conversational turn-taking, but it is hard to see larger structures. If we aggregate over a longer time period of 2.5 minutes we start to see the individual acts form into triads and groups. See http://statnet.org/movies/ndtv_vignette/cls33_10_16_96v2.mp4 for a version of the corresponding movie.
slice.par<-list(start=0,end=30,interval=2.5,
aggregate.dur=2.5,rule="latest")
compute.animation(cls33_10_16_96,
slice.par=slice.par,animation.mode='MDSJ',verbose=FALSE)
render.d3movie(cls33_10_16_96,
displaylabels=FALSE,output.mode='htmlWidget')
timeline(cls33_10_16_96,slice.par=slice.par)
plot(tErgmStats(cls33_10_16_96,'meandeg',
time.interval = 2.5,aggregate.dur=2.5),
main='Mean degree of cls33, 2.5 minute aggregation')
To reveal slower structural patterns we can make the aggregation period even longer, and let the slices overlap (by making interval less than aggregate.dur) so that the same edge may appear in sequential slices and the changes will be less dramatic between successive views. See http://statnet.org/movies/ndtv_vignette/cls33_10_16_96v3.mp4 for the corresponding movie.
slice.par<-list(start=0,end=30,interval=1,
aggregate.dur=5,rule="latest")
timeline(cls33_10_16_96,slice.par=slice.par)
compute.animation(cls33_10_16_96,
slice.par=slice.par,animation.mode='MDSJ',verbose=FALSE)
render.d3movie(cls33_10_16_96,
displaylabels=FALSE,
output.mode = 'htmlWidget')
plot(tErgmStats(cls33_10_16_96,'meandeg',
time.interval = 1,aggregate.dur=5,rule='latest'),
main='Mean degree of cls33, overlapping 5 minute aggregation')
Question: How would measurements of a network’s structural properties (transitivity, betweenness, etc.) at each time point likely differ in each of the aggregation scenarios?
Question: When we use a long duration slice, for some networks it is quite likely that the edge between a pair of vertices has more than one active period. How should this condition be handled? If the edge has attributes, which ones should be shown?
Ideally we might want to aggregate the edges in some way, summing their activity durations or perhaps adding the weights together. Currently edge attributes are not aggregated and the rule element of the slice.par argument controls whether the earliest or latest attribute value should be returned for an edge when multiple elements are encountered.
ergm and sna function wrappersWe’ve already seen several examples using the tSnaStats and tErgmStats functions. These tools use the network statistics capabilities of the sna metrics and ergm terms while handling the dirty work of chopping the networkDynamic object up into a series of appropriate networks (using collapse.network), interpreting some of the control parameters (directedness, etc), calculating the metric for each slice, and returning the results as time series (ts) object. Be forewarned, this process is usually neither fast or memory efficient! The binning of the networks is defined by the time.interval and aggregate.dur parameters, controlling the interval of time between the beginning of the bins and the duration of time that each bin aggregates.
Exercise: Define slicing parameters and compute a time series of graph triad.census values the first 20 minutes of classroom interactions using 5 minute non-overlapping slices
tSnaStats(cls33_10_16_96,'triad.census',
start=0,
end = 20,
time.interval = 5,
aggregate.dur = 5)
Time Series:
Start = 0
End = 20
Frequency = 0.2
003 012 102 021D 021U 021C 111D 111U 030T 030C 201 120D 120U 120C 210
0 703 0 102 262 0 0 0 27 0 0 8 11 16 0 7
5 651 13 144 223 0 0 0 62 1 0 4 17 14 1 6
10 822 29 272 0 0 0 2 3 0 0 5 0 0 0 2
15 851 16 263 0 0 0 1 0 0 0 2 0 0 0 1
20 582 12 205 186 0 0 2 89 2 0 9 22 15 0 3
300
0 4
5 4
10 5
15 6
20 13
Notice that, unlike the previous temporal stats examples, the triad.census function returns multiple statistics – the counts for each triad type – and so tSnaStats returns a multivariate time series object in which each row is a time point and each column is one of the count statistics.
So far there is only one, pShiftCount which provides a wrapper for the implementation of Gibson’s (2003) “participation shift” metric, provided by the relevent package (Butts, 2008). This measure considers the network to be an ordered sequence of events – in which the exact timing is not important – and tallies up instances of two-event exchanges into the thirteen categories Gibson used to classify conversational turn taking.
For example, two edges in sequence, ‘i’ talks to ‘j’, and then ‘j’ responds to ‘i’, is counted as one type of event, where ‘i’ talks to ‘j’ and then ‘j’ talks to ‘k’ would be another type of event. The set of events Gibson was interested in is certainly not an exhaustive list of potential sequences, but may still be an interesting approach for characterizing dynamic networks.
If we apply the metric to the entire time period of the McFarland classroom speech acts
pShiftCount(cls33_10_16_96)
Loading required namespace: relevent
AB-BA AB-B0 AB-BY A0-X0 A0-XA A0-XY AB-X0 AB-XA AB-XB AB-XY A0-AY
691 247 2 45 3 2 5 4 7 8 155 0
AB-A0 AB-AY
691 1 29
We see lots of “turn-receiving” alternation (type AB-BA) and a fair amount of “turn-usurping” exchanges – perhaps indicating time periods when multiple conversations are happening at the same time.
Gibson’s typology assumes that edges/ties directed “at the group” are distinguishable those directed to individuals, and has a strong assumption of sequential non-simultaneous events. Because the networkDynamic object does not explicitly code for ‘group’ utterances, simultaneous edges originating from a speaker (same onset, terminus, and tail vertex) are assumed to be directed at the group, even if not all group members are reached by the ties.
Question: What are some key distinctions between the types of structures counted by pShiftCount when compared with a triad.census?
When we have access to longer duration longitudinal network data sets, it begins to be possible to examine networks in terms of temporal characterizations of edge activity without first chopping them up into bins. For example, what are the average durations of edge activity?
The edgeDuration function provides a convenient way to access the information.
edgeDuration(short.stergm.sim)
[1] 11 25 24 4 15 4 23 10 23 16 4 7 24 19 9 14 8 14 8 19 4 5 8
[24] 3 12 3 8 4 4 2 2 1
By default, it returns a vector of durations corresponding to each edge observed in the network. We can use standard R tools to look at these distributions.
summary( edgeDuration(short.stergm.sim) )
Min. 1st Qu. Median Mean 3rd Qu. Max.
1.00 4.00 8.00 10.53 15.25 25.00
If we are working with event data such as the McFarland classrooms, this function at first appears less useful:
edgeDuration(cls33_10_16_96)
[1] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
[36] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
[71] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
[106] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Fortunately, there is an argument appropriate for working networks having zero-duration ties: instead of summing the duration of edges’ activity spells, we tell it to just count the number of times they are active.
edgeDuration(cls33_10_16_96,mode='counts')
[1] 7 4 4 5 1 1 5 3 7 2 3 6 6 3 3 2 6 6 3 3 3 4 6
[24] 2 4 9 7 8 9 9 9 8 9 9 9 9 8 7 10 9 10 9 7 9 15 14
[47] 11 10 11 14 12 11 7 7 3 3 13 13 3 13 13 10 10 1 1 1 1 2 1
[70] 1 1 1 4 1 1 2 1 1 2 9 9 6 6 12 12 4 5 4 3 7 7 6
[93] 6 3 2 2 6 6 12 12 3 2 2 9 9 9 9 2 2 3 2 2 1 1 1
[116] 1 1 1 2 2 1 1 1 1 1 1 1 2 1
An important point of detail: when we compute statistics and the level of an ‘edge’, we are usually summing together all of the activity spells associated with that edge. Setting subject = 'spells' will return a duration for each edge activity spell, which is probably more consistent with what statistical models such as tergm consider the duration of an edge. For multiplex networks, setting subject = 'dyads' will aggregate across multiple edges linking a pair of vertices.
hist(edgeDuration(short.stergm.sim))
hist(edgeDuration(short.stergm.sim,subject = 'spells'))
Question: What happens to the measured durations as the observation window gets shorter? Why?
summary(edgeDuration(short.stergm.sim))
Min. 1st Qu. Median Mean 3rd Qu. Max.
1.00 4.00 8.00 10.53 15.25 25.00
summary(edgeDuration(short.stergm.sim,start=0,end=10))
Min. 1st Qu. Median Mean 3rd Qu. Max.
1.000 4.000 7.000 6.455 9.000 10.000
Edge durations can tell us the relative rates at which individual relationships are active, but what if we want to know how active the vertices are across their relationships? The tiedDuration function provides a vertex-level aggregation of the amount of time each vertex is “in a relationship”.
tiedDuration(short.stergm.sim)
[1] 4 0 94 63 74 58 35 47 96 44 71 0 20 39 4 25
Question: What might be an expected relationship between the tiedDuration and the degree of each vertex in a dynamic network?
In static networks we frequently measure distances using the shortest path geodesic. In dynamic networks that are models of possible transmission routes, we need to consider the sequence of edge timing when computing allowable ‘journeys’ through the network. The tPath function provides a way to calculate the set of temporally reachable vertices from a given source vertex starting at a specific time.
path<-tPath(short.stergm.sim,v = 13,
graph.step.time=1)
path
$tdist
[1] Inf Inf 14 15 14 15 16 15 15 16 15 Inf 0 16 Inf 22
$previous
[1] 0 0 13 5 13 3 11 3 3 9 5 0 0 9 0 8
$gsteps
[1] Inf Inf 1 2 1 2 3 2 2 3 2 Inf 0 3 Inf 3
$start
[1] 0
$end
[1] Inf
$direction
[1] "fwd"
$type
[1] "earliest.arrive"
attr(,"class")
[1] "tPath" "list"
By default, it does this by computing the earliest forward reachable path, so it also returns the earliest times each of the vertices becomes reachable in the $tdist component of the list, with Inf if it was unreachable. The $previous component gives, for each vertex, the id of the vertex it was reached by. $gsteps gives the number of steps in the earliest forward path journey to reach each vertex. Note that this is usually not the same thing as the length of the shortest time-respecting path!
We showed previously that we plot the tPath overlayed on the aggregate network with plotPaths, but this is probably only useful when the aggregate network is not too dense. So another option is to just plot the tree of the reachable path as if it was a network. By default this will label the edges with the times that the path crossed them.
plot(path,edge.lwd = 2)
The transmissionTimeline is an alternate view which is often helpful for debugging and understanding tPaths. It plots the time at which each vertex was reached against the number of steps in the path with lines corresponding to the edges that the path crossed.
transmissionTimeline(path,jitter=TRUE,
main='Earliest forward path from vertex 13')
Question: Are reachable paths symmetric in an undirected network? If vertex i can reach j, can we assume that j can reach i?
Because reachable paths are not symmetric, the idea of “components” is much more complex in dynamic networks. However, we can use the reachable paths to find the sizes of the ‘forward reachable sets’ from each vertex in the network with the tReach function. This corresponds to the distribution of maximal possible epidemic sizes for a trivial SI infection model with a transmission probability of 1.0, so may give us a possible measure of how effective the network might be at transmitting.
If we compute this for the short.stergm.sim, we will get back a vector where each element holds the reachable set size of the corresponding vertex – starting from the beginning of the observation period.
tReach(short.stergm.sim)
[1] 2 1 12 12 12 12 12 12 12 12 12 1 12 12 2 12
This tells us that the example network is fairly well temporally connected. Most of the vertices can eventually reach at least 11 other vertices within the period of time we have “observed”. For a network this small, we can efficiently compute all of the paths. But for larger networks we might want to just get a sense of the distribution of forward set sizes using the sample argument to only compute paths from a subset of seed vertices.
Some additional tips, tricks, and helpful information for temporal visualization.
In this tutorial we have been only playing back animations in the R plot window. But what if you want to share your animations with collaborators or post them on the web? Assuming that the external dependencies are correctly installed, we can save out animations in multiple useful formats supported by the ndtv and the animation package:
render.d3movie() plays an HTML5 vector graphics version of the animation in a browser window, Rmarkdown, or optionally saves it for later embedding.ani.replay() plays the animation back in the R plot window. (see ?ani.options for more parameters)saveVideo() saves the animation as a video file on disk (if the FFmpeg library is installed).saveGIF() creates an animated GIF (if ImageMagick’s convert is installed)saveLatex() creates an animation embedded in a PDF documentSee the help page for each function for detailed listing of parameters. We will quickly demonstrate some useful options below.
As we saw earlier, ndtv includes the render.d3movie that, instead of using R’s plotting functions and the animation library, embeds the animation information into a web page along with “ndtv-d3 player” as an interactive HTML5 SVG animation for display in a modern web browser.
render.d3movie(wheel,vertex.col='blue', edge.col='gray')
The render.d3movie supports most (but not all) of the same commonly used plot arguments as render.animation. For a list of exactly which arguments, see ?render.d3Movie. There are also some additional arguments that can be used to configure HTML styling and interaction properties such as tool-tips.
We’ve provided a tutorial devoted just to the ndtv-d3 features available at http://statnet.org/workshops/SUNBELT/current/ndtv/ndtv-d3_vignette.html It demonstrates great features such as embedding animations in Rmarkdown documents (Allaire, et. al. 2015) such as this tutorial, and some of the features that may be useful for building Shiny apps.
Since we just rendered the “wheel” example movie, it is already cached and we can capture the output of ani.replay() into a movie file. Try out the various output options below.
Save out an animation, providing a non-default file name for the video file:
saveVideo(ani.replay(),video.name="wheel_movie.mp4")
You will probably see a lot output on the console from ffmpeg reporting its status, and then it should open the movie in an appropriate viewer on your machine.
Sometimes we may want to change the pixel dimensions of the movie output to make the plot (and the file size) much larger.
saveVideo(ani.replay(),video.name="wheel_movie.mp4",
ani.width=800,ani.height=800)
We can increase the video’s image quality (and file size) by telling ffmpeg to use a higher bit-rate (less compression) for the video.
saveVideo(ani.replay(),video.name="wheel_movie.mp4",
other.opts="-b:v 5000k")
Because the ani.record() and ani.replay() functions cache each plot image in memory, they are not very speedy and the rendering process will tend to slow to a crawl down as memory fills up when rendering large networks or long movies. We can avoid this by saving the output of render.animation directly to disk by wrapping it inside the saveVideo() call and setting render.cache='none'.
saveVideo(render.animation(wheel,vertex.col='blue',
edge.col='gray',render.cache='none'),
video.name="wheel_movie.mp4")
We can also export an animation as an animated GIF image. GIF animations will be very large files, but are very portable for sharing on the web. To render a GIF file, you must have ImageMagick installed. See ?saveGIF for more details.
saveGIF(render.animation(wheel,vertex.col='blue',
edge.col='gray',render.cache='none'),
movie.name="wheel_movie.gif")
[1] TRUE
The animation package supports including animations inside PDF documents if you have the appropriate Latex utilities installed. However, the animations will only play inside Adobe Acrobat PDF viewers so it is probably less portable than using GIF or video renders.
saveLatex(render.animation(wheel,vertex.col='blue',
edge.col='gray',render.cache='none'))
Exercise: Using the list of options from the help page ?ani.options, locate the option to control the time delay interval of the animation, and use it to render a video where each frame stays on screen for 2 seconds.
saveVideo(render.animation(wheel,vertex.col='blue',
edge.col='gray',render.cache='none',
render.par=list(tween.frames=1),
ani.options=list(interval=2)),
video.name="wheel_movie.mp4")
Exercise: Using the list of options from the help page ?render.d3movie, locate the option to control the title and background color and load an animation in the web browser with the d3.options set so that it will play automatically, with a much faster duration than normal.
render.d3movie(wheel,vertex.col='blue',
main="I'm a wheel!",
bg='gray',
d3.options=list(animationDuration=100,animateOnLoad=TRUE))
Question: What are some trade-offs between the HTML5 and video approaches to saving and sharing network animations?
In some dynamic network data the vertices may also enter or leave the network (become active or inactive, birth/death). Lin Freeman’s windsurfer social interaction data-set (Almquist and Butts 2011) is a good example of this. Vertices enter and exit frequently because different sets of people are present on the beach on successive days. For instance, look at vertex 74 in contrast to vertex 1 on the timeline plot.
data(windsurfers)
timeline(windsurfers,plot.edge.spells=FALSE)
slice.par<-list(start=1,end=31,interval=1,
aggregate.dur=1,rule="earliest")
windsurfers<-compute.animation(windsurfers,slice.par=slice.par,
default.dist=3,
animation.mode='MDSJ',
verbose=FALSE)
render.d3movie(windsurfers,vertex.col="group1",
edge.col="darkgray",
displaylabels=TRUE,label.cex=.6,
label.col="blue", verbose=FALSE,
main='Windsurfer interactions, 1-day aggregation',
output.mode = 'htmlWidget')
Warning in is.na(vertex.col): is.na() applied to non-(list or vector) of
type 'NULL'
Warning in is.na(label.col): is.na() applied to non-(list or vector) of
type 'NULL'
Warning in is.na(vertex.col): is.na() applied to non-(list or vector) of
type 'NULL'
Warning in is.na(label.col): is.na() applied to non-(list or vector) of
type 'NULL'
These networks also have a lot of isolates, which tends to scrunch up the rest of the components in the network plot so they are hard to see. Setting the lower default.dist above can help with this. In this example (see http://statnet.org/movies/ndtv_vignette/windsurfers_v1.mp4) the turnover of people on the beach is so rapid that structure appears to change chaotically, and it is quite hard to see what is going on. Notice the blank period at day 25 where the network data is missing.
We can still calculate some vertex-level metrics, such as the activity durations for each vertex.
hist( vertexDuration(windsurfers) )
Not surprisingly, most of the windsurfers spend less than 5 days a month on the beach.
Question: What is the difference between calculating the vertex durations with subject='vertices' and subject='spells'?
What is happening to the density of the network as vertices enter and exit? Should we be thinking of the vertices as inactive, or unobserved?
par(mfcol=c(3,1))
# an example of a 'roll-your-own' networkDynamic statistic
netSizes<-sapply(1:32,function(t){ network.size.active(windsurfers,at=t) })
plot( 1:32,netSizes ,type='l',
main = 'Number of windsurfers active each day')
plot( tErgmStats(windsurfers,'edges') ,
main = 'Number of widsurfer interaction edges active each day')
plot( tSnaStats(windsurfers, 'gden') ,
main = 'Graph density of winsurfer interaction edges each day')
par(mfcol=c(1,1))
There is also a lot of periodicity, since many more people go to the beach on weekends. So in this case, lets try a week-long slice by setting aggregate.dur=7 to try to smooth it out so we can see changes against the aggregate weekly structure.
slice.par<-list(start=0,end=24,interval=1,
aggregate.dur=7,rule="earliest")
windsurfers<-compute.animation(windsurfers,slice.par=slice.par,
default.dist=3,
animation.mode='MDSJ',
verbose=FALSE)
render.d3movie(windsurfers,vertex.col="group1",
edge.col="darkgray",
displaylabels=TRUE,label.cex=.6,
label.col="blue", verbose=FALSE,
main='Windsurfer interactions, 7-day aggregation',
output.mode = 'htmlWidget')
This new rolling–“who interacted this week” network (see http://statnet.org/movies/ndtv_vignette/windsurfers_v2.mp4) is larger and more dense (which is to be expected) and also far more stable. We see new ties forming against a background of pre-existing ties. There is still some turnover due to people who don’t make it to the beach every week but it is now possible to see some of the sub-groups of ‘regulars’ and the the various bridging individuals.
Question: Why did we adjust the ending time parameter?
Question: How would a researcher determine the “correct” aggregation period or data collection interval for a dynamic process? When the “same” network is sampled repeatedly, how can we distinguish sampling noise from network dynamics?
Vertices and edges are not the only things that change over time, how do we display dynamic attributes (such as infection status) and changes to structural properties of the network?
If a network has dynamic attributes defined, they can be used to define graphic properties of the network which change over time. We can activate some attributes on our earlier “wheel” example, setting a dynamic attribute for edge widths. The help file listing and explaining dynamic TEA attributes can be displayed with ?dynamic.attributes.
We can attach an attribute named width to the edges which will take values of 1, 5, and 10 for various ranges of times.
activate.edge.attribute(wheel,'width',1,onset=0,terminus=3)
activate.edge.attribute(wheel,'width',5,onset=3,terminus=7)
activate.edge.attribute(wheel,'width',10,onset=7,terminus=Inf)
And check what we created.
list.edge.attributes(wheel)
[1] "active" "na" "width.active"
get.edge.attribute.active(wheel,'width', at=2)
[1] 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
get.edge.attribute.active(wheel,'width', onset=5,terminus=6)
[1] 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5
get.edge.attribute.active(wheel,'width', at=300)
[1] 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
There are many features and complexities that come up when working with dynamic attributes. For example, with the commands above, we’ve defined values for edges even when those edges are inactive. Compare:
get.edge.attribute.active(wheel,'width', at=2)
[1] 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
get.edge.attribute.active(wheel,'width', at=2,require.active=TRUE)
[1] 1 1 NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA
When using an attribute to control a plot parameter we must make sure the attributes are always defined for every time period that the network will be plotted or else an error will occur. So it is often good practice first set a default value from -Inf to Inf before overwriting with later commands defining which elements we wanted to take a special value.
activate.vertex.attribute(wheel,'mySize',1, onset=-Inf,terminus=Inf)
activate.vertex.attribute(wheel,'mySize',3, onset=5,terminus=10,v=4:8)
We can set values for vertex colors.
activate.vertex.attribute(wheel,'color','gray',onset=-Inf,terminus=Inf)
activate.vertex.attribute(wheel,'color','red',onset=5,terminus=6,v=4)
activate.vertex.attribute(wheel,'color','green',onset=6,terminus=7,v=5)
activate.vertex.attribute(wheel,'color','blue',onset=7,terminus=8,v=6)
activate.vertex.attribute(wheel,'color','pink',onset=8,terminus=9,v=7)
There are also query functions for TEAs which we can use to ask when an attribute takes a specific value or matches a criteria
when.vertex.attrs.match(wheel,'color',value = 'green')
[1] Inf Inf Inf Inf 6 Inf Inf Inf Inf Inf
when.edge.attrs.match(wheel,'width', match.op = '>', value = 3)
[1] 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
Finally we render it, giving the names of the dynamic attributes to be used to control the plotting parameters for edge with, vertex size, and vertex color.
render.animation(wheel,edge.lwd='width',vertex.cex='mySize',
vertex.col='color',verbose=FALSE)
ani.replay()
The attribute values for the time points are defined using rule argument to network.collapse, which controls the behavior if multiple values are active for the plot period.
Exercise: Using the wheel network, create a dynamic vertex attributed named “group”. Define the TEA so that initially most of the vertices will be in group “A”, but over time more and more will be in group “B”
Sometimes it is awkward or inefficient to pre-generate dynamic attribute values. Why create and attach another attribute for color if it is just a simple transformation of an existing attribute or measure? We can define a function to transform the observed network values into an appropriate plotting attribute. Recall that R allows us to define new functions whenever we want. For example, we could define myFunction() that will accept myArgument, transform it, and return the new value.
myFunction<-function(myArgument){
# do things with myArgument
myArgument<-myArgument+1
# return the result of the function
return(myArgument)
}
myFunction(1)
[1] 2
The render.animation function has the ability to accept the plot.network arguments as R functions. These functions will be evaluated “on the fly” at each time point as the network is rendered and can operate on the attributes and properties of the collapsed network.
For example, if we wanted to use our previously created 'width' attribute to control the color of edges along with their width, we could define a function to extract the value of the 'width' edge attribute from the momentary slice network and map it to the red component of an RGB color. We can render the network, setting edge.col equal to this function.
render.animation(wheel,edge.lwd=3,
edge.col=function(slice){rgb(slice%e%'width'/10,0,0)},
verbose=FALSE)
ani.replay()
Notice the slice function argument and the use of slice instead of the original name of the network in the body of the function. The arguments of plot control functions must draw from a specific set of named arguments which will be substituted in and evaluated at each time point before plotting. The set of valid argument names that can be used in special functions is:
net is the original (un-collapsed) networkslice is the static network slice to be rendered, collapsed with the appropriate onset and terminuss is the slice number in the sequence to be renderedonset is the onset (start time) of the slice to be renderedterminus is the terminus (end time) of the slice to be renderedWe can also define functions based on calculated network measures such as betweenness rather than network attributes:
require(sna) # load library of SNA measures
wheel%n%'slice.par'<-list(start=1,end=10,interval=1,
aggregate.dur=1,rule='latest')
render.animation(wheel,
vertex.cex=function(slice){(betweenness(slice)+1)/5},
verbose=FALSE)
ani.replay()
Notice that in this example we had to modify the start time using the slice.par setting to avoid time 0 because the betweenness function in the sna package will give an error for a network with no edges.
Exercise: Write a functional plot argument that scales vertex size in proportion to momentary degree
The main plot commands accept functions as well, so it is possible to do fun things like implement a crude zoom effect by setting xlim and ylim parameters to be dependent on the time.
render.animation(wheel,
xlim=function(onset){c(-5/(onset*0.5),5/(onset*0.5))},
ylim=function(onset){c(-5/(onset*0.5),5/(onset*0.5))},
verbose=FALSE)
ani.replay()
The package also includes some pre-written ``special effects’’ functions that can be used for common plotting tasks, such as coloring edges by their age. For example, we can have an animation where edges start out red and fade to green as they age.
render.animation(wheel,
edge.col=effectFun('edgeAgeColor',fade.dur=5,
start.color='red',end.color='green'),
edge.lwd=4,
verbose=FALSE)
ani.replay()
The effectFun function looks for functions named effect.xxx, substitutes in any matching arguments, and returns a un-evaluated function that can be passed into a render as functional plot argument.
These functions can be used for static plots as well. For this you can call the effect directly (effect.edgeAgeColor() instead of effectFun('edgeAgeColor'))
plot(wheel,edge.col=effect.edgeAgeColor(wheel,onset=10,fade.dur=10,
start.color='red',end.color='green'),
edge.label=edges.age.at(wheel,at=10),
edge.lwd=8)
In the previous examples we have treated the networks we are visualizing as un-weighted. But for some applications it may be useful to incorporate edge weight information in a layout. Even if the original network data does not contain weights, we may wish to perform operations using edge duration information. For example, when we are rendering an aggregate network, should an edge that exists for a single moment be treated the same way as an edge that exists the entire time?
By default, the collapse.network() function returns an ordinary static network. But setting the argument rm.time.info=FALSE will cause it to add some attributes with crude summary information about the activity of the edges and vertices over the time period of aggregation. (We could of course define our own more sophisticated aggregation functions, see later examples.)
simAgg <-network.collapse(short.stergm.sim,rm.time.info=FALSE,
rule='latest')
list.edge.attributes(simAgg)
[1] "activity.count" "activity.duration" "na"
Notice the activity.count and activity.duration that are now attached to the edges.
By default the layout algorithms will assume that all edges should have the same “ideal” length, any weights or values attached to the edge will be ignored. But if we do have edge values, either from raw data or by aggregating the edges over time, we might want to have the layout attempt to map that information the desired lengths of the edges. The weight.attr argument makes it possible to pass in the name of a numeric edge attribute to be used in constructing the layout.dist matrix of desired distances between vertices.
Lets plot the aggregate network with edge weights ignored. But instead of using the normal plot.network command alone, we are going to extract the coordinates created by compute.animation and feed them into the plot (this is just for constructing the examples, no need to do this for real movies). We will also use the activity.duration attribute to control the drawing width and labels for the edges.
# set slice par to single slice for entire range
slice.par<-list(start=0,end=25,interval=25,
aggregate.dur=25,rule='latest')
compute.animation(short.stergm.sim,animation.mode='MDSJ',
slice.par=slice.par)
# extract the coords so we can do a static plot
coords<-cbind(get.vertex.attribute.active(short.stergm.sim,
'animation.x',at=0),
get.vertex.attribute.active(short.stergm.sim,
'animation.y',at=0))
plot(simAgg,coord=coords,
edge.lwd='activity.duration', edge.col='#00000055',
edge.label='activity.duration',edge.label.col='blue',
edge.label.cex=0.5,main='Edge weights ignored')
For comparison, we will compute the layout so that the higher-valued edges draw vertices closer together (the default weight.dist=FALSE considers edge weights to be similarities)
compute.animation(short.stergm.sim,weight.attr='activity.duration',
animation.mode='MDSJ',seed.coords=coords,default.dist=20)
coords<-cbind(get.vertex.attribute.active(short.stergm.sim,
'animation.x',at=0),
get.vertex.attribute.active(short.stergm.sim,
'animation.y',at=0))
plot(simAgg,coord=coords,
edge.lwd='activity.duration', edge.col='#00000055',
edge.label='activity.duration',edge.label.col='blue',
edge.label.cex=0.5,main='Edge weights as similarity')
Now compute layout with weight.dist=TRUE so weights are treated as distance and higher-valued edges push vertices further apart.
compute.animation(short.stergm.sim,weight.attr='activity.duration',
weight.dist=TRUE, animation.mode='MDSJ',
seed.coords=coords,default.dist=20)
coords<-cbind(
get.vertex.attribute.active(short.stergm.sim, 'animation.x',at=0),
get.vertex.attribute.active(short.stergm.sim, 'animation.y',at=0)
)
plot(simAgg,coord=coords,
edge.lwd='activity.duration', edge.col='#00000055',
edge.label='activity.duration',edge.label.col='blue',
edge.label.cex=0.5,main='Edge weights as distance')
Although we can clearly see that the layout is trying to do what we ask it, the result is a graph that is visually hard to read. Part of the problem is that we are asking the layout to achieve something difficult: the edge weights (and corresponding desired lengths) differ by more than an order of magnitude.
range(simAgg%e%'activity.duration')
[1] 1 25
range(log(simAgg%e%'activity.duration'+1))
[1] 0.6931472 3.2580965
This suggests a solution of attaching a new edge attribute containing the logged duration, and using that as the weight.attr
set.edge.attribute(short.stergm.sim,'logDuration',
log(simAgg%e%'activity.duration'+1))
compute.animation(short.stergm.sim,
weight.attr='logDuration',
animation.mode='MDSJ',seed.coords=coords)
[1] "MDSJ starting stress: 5942.924389411171"
[2] "MDSJ ending stress: 11.796874395322845"
coords<-cbind(
get.vertex.attribute.active(short.stergm.sim, 'animation.x',at=0),
get.vertex.attribute.active(short.stergm.sim, 'animation.y',at=0))
plot(simAgg,coord=coords,
edge.lwd='activity.duration', edge.col='#00000055',
edge.label='activity.duration',edge.label.col='blue',
edge.label.cex=0.5,main='Edge weights as log similarity')