Stochastic Models

A brief introduction to stochastic modeling of network data, focusing on exponential random graphs models (ERGM). 

Readings

Exercises

Slides

Video

Supplementary Readings

ERGM Software

Class will mostly be lecture, but I will briefly demonstrate ERGM modeling using R. If you want to follow along, you will need to install R and, for convenience, R-Studio (in that order). Then install the sna and ergm packages:

install.packages("sna")

install.packages("ergm")

library(sna)

library(ergm)

Then, in order to have the datasets we will use, you will need to install the xUCINET package. This is not available yet through the install.packages command, so you have to download this zip file: xUCINET_0.0.0.9014.zip and then follow these instructions

version 11

Finally, you can download the R-script we will be using in class here.