Going viral with R’s igraph package
R’s igraph package provides a simple and flexible set of utilities for working with graphs. In this post, we’ll use this package to animate the simulated spread of a disease through a network. Graphs A graph is just a collection of nodes joined by edges: require(igraph) # Specify an undirected graph by hand, using a… Read More Going viral with R’s igraph package